summaryrefslogtreecommitdiff
path: root/src/timezone/ialloc.c
diff options
context:
space:
mode:
authorPavan Deolasee2016-10-27 15:02:55 +0000
committerPavan Deolasee2016-10-27 15:02:55 +0000
commitc52792488cd87e67e62ec61f5b56f461900353b4 (patch)
tree02b4a719f979659de8f73fce6c1ca65cef2e323f /src/timezone/ialloc.c
parent891e6be57e5580b54a9df9fd42cb9bd10d0e7b21 (diff)
parentb5bce6c1ec6061c8a4f730d927e162db7e2ce365 (diff)
Merge commit 'b5bce6c1ec6061c8a4f730d927e162db7e2ce365'
Diffstat (limited to 'src/timezone/ialloc.c')
-rw-r--r--src/timezone/ialloc.c76
1 files changed, 0 insertions, 76 deletions
diff --git a/src/timezone/ialloc.c b/src/timezone/ialloc.c
deleted file mode 100644
index 05faafe262..0000000000
--- a/src/timezone/ialloc.c
+++ /dev/null
@@ -1,76 +0,0 @@
-/*
- * This file is in the public domain, so clarified as of
- * 2006-07-17 by Arthur David Olson.
- *
- * IDENTIFICATION
- * src/timezone/ialloc.c
- */
-
-#include "postgres_fe.h"
-
-#include "private.h"
-
-
-#define nonzero(n) (((n) == 0) ? 1 : (n))
-
-char *
-imalloc(int n)
-{
- return malloc((size_t) nonzero(n));
-}
-
-char *
-icalloc(int nelem, int elsize)
-{
- if (nelem == 0 || elsize == 0)
- nelem = elsize = 1;
- return calloc((size_t) nelem, (size_t) elsize);
-}
-
-void *
-irealloc(void *pointer, int size)
-{
- if (pointer == NULL)
- return imalloc(size);
- return realloc((void *) pointer, (size_t) nonzero(size));
-}
-
-char *
-icatalloc(char *old, const char *new)
-{
- char *result;
- int oldsize,
- newsize;
-
- newsize = (new == NULL) ? 0 : strlen(new);
- if (old == NULL)
- oldsize = 0;
- else if (newsize == 0)
- return old;
- else
- oldsize = strlen(old);
- if ((result = irealloc(old, oldsize + newsize + 1)) != NULL)
- if (new != NULL)
- (void) strcpy(result + oldsize, new);
- return result;
-}
-
-char *
-icpyalloc(const char *string)
-{
- return icatalloc((char *) NULL, string);
-}
-
-void
-ifree(char *p)
-{
- if (p != NULL)
- (void) free(p);
-}
-
-void
-icfree(char *p)
-{
- if (p != NULL)
- (void) free(p);
-}