summaryrefslogtreecommitdiffstats
path: root/lib/libc/time/ialloc.c
diff options
context:
space:
mode:
authortedu <tedu@openbsd.org>2015-02-09 11:29:19 +0000
committertedu <tedu@openbsd.org>2015-02-09 11:29:19 +0000
commitc6d3c8f734998e685a14d07af11926d0b478b422 (patch)
tree8f48f21f54aa73016585040b895afbf2c23ca661 /lib/libc/time/ialloc.c
parentsearch engines replaced these files a long TIME ago (diff)
downloadwireguard-openbsd-c6d3c8f734998e685a14d07af11926d0b478b422.tar.xz
wireguard-openbsd-c6d3c8f734998e685a14d07af11926d0b478b422.zip
stop trying to workaround malloc bugs that have not existed for 20 years.
ok deraadt
Diffstat (limited to 'lib/libc/time/ialloc.c')
-rw-r--r--lib/libc/time/ialloc.c87
1 files changed, 0 insertions, 87 deletions
diff --git a/lib/libc/time/ialloc.c b/lib/libc/time/ialloc.c
deleted file mode 100644
index a1c3910515a..00000000000
--- a/lib/libc/time/ialloc.c
+++ /dev/null
@@ -1,87 +0,0 @@
-/* $OpenBSD: ialloc.c,v 1.12 2010/08/23 22:35:34 millert Exp $ */
-/*
-** This file is in the public domain, so clarified as of
-** 2006-07-17 by Arthur David Olson.
-*/
-
-/*LINTLIBRARY*/
-
-#include "private.h"
-
-#define nonzero(n) (((n) == 0) ? 1 : (n))
-
-char *
-imalloc(n)
-const int n;
-{
- return malloc((size_t) nonzero(n));
-}
-
-char *
-icalloc(nelem, elsize)
-int nelem;
-int elsize;
-{
- if (nelem == 0 || elsize == 0)
- nelem = elsize = 1;
- return calloc((size_t) nelem, (size_t) elsize);
-}
-
-void *
-irealloc(pointer, size)
-void * const pointer;
-const int size;
-{
- void *p;
-
- if (pointer == NULL)
- return imalloc(size);
- p = realloc((void *) pointer, (size_t) nonzero(size));
- if (p == NULL)
- free(pointer);
- return p;
-}
-
-char *
-icatalloc(old, new)
-char * const old;
-const char * const new;
-{
- register char * result;
- register 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) memcpy(result + oldsize, new, newsize + 1);
- return result;
-}
-
-char *
-icpyalloc(string)
-const char * const string;
-{
- return icatalloc((char *) NULL, string);
-}
-
-void
-ifree(p)
-char * const p;
-{
- if (p != NULL)
- (void) free(p);
-}
-
-void
-icfree(p)
-char * const p;
-{
- if (p != NULL)
- (void) free(p);
-}