diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2014-05-18 08:08:51 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2014-05-18 08:08:51 +0000 |
commit | bf73e6ad642681c23ce61a4a312483138e3811e2 (patch) | |
tree | a42ea45736969e82e4384dfb8fd3a084a37a7f54 /usr.bin/make/memory.h | |
parent | f5e4591067b60e90f1583fec44aa9694a319b7ce (diff) |
a bit more reallocarray (and kill ecalloc, which isn't used)
okay chl@
Diffstat (limited to 'usr.bin/make/memory.h')
-rw-r--r-- | usr.bin/make/memory.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/make/memory.h b/usr.bin/make/memory.h index 70e7bfd111b..953db7f8c02 100644 --- a/usr.bin/make/memory.h +++ b/usr.bin/make/memory.h @@ -1,7 +1,7 @@ #ifndef MEMORY_H #define MEMORY_H -/* $OpenBSD: memory.h,v 1.8 2014/05/12 19:11:19 espie Exp $ */ +/* $OpenBSD: memory.h,v 1.9 2014/05/18 08:08:50 espie Exp $ */ /*- * Copyright (c) 1988, 1989, 1990, 1993 @@ -41,7 +41,6 @@ extern void *emalloc(size_t); extern char *estrdup(const char *); extern void *erealloc(void *, size_t); -extern void *ecalloc(size_t, size_t); extern void *ereallocarray(void *, size_t, size_t); extern int eunlink(const char *); extern void esetenv(const char *, const char *); |