diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-09-30 04:30:04 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-09-30 04:30:04 +0000 |
commit | 069a77948545d9ac1a6dcf2cfdceb1806b08f71a (patch) | |
tree | c904b5b6cc49e7813ffe197ce6c58c995804df78 /usr.bin/ssh/xmalloc.c | |
parent | d195ee786dbd0f0e6ca4819216ec7eed440b7750 (diff) |
more culling
Diffstat (limited to 'usr.bin/ssh/xmalloc.c')
-rw-r--r-- | usr.bin/ssh/xmalloc.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/usr.bin/ssh/xmalloc.c b/usr.bin/ssh/xmalloc.c index 0203843c6ee..a74c19ff026 100644 --- a/usr.bin/ssh/xmalloc.c +++ b/usr.bin/ssh/xmalloc.c @@ -15,16 +15,10 @@ failure (they call fatal if they encounter an error). */ #include "includes.h" -RCSID("$Id: xmalloc.c,v 1.2 1999/09/29 21:14:16 deraadt Exp $"); +RCSID("$Id: xmalloc.c,v 1.3 1999/09/30 04:30:03 deraadt Exp $"); #include "ssh.h" -#if 0 -void *malloc(size_t size); -void *realloc(void *ptr, size_t size); -void free(void *ptr); -#endif - void *xmalloc(size_t size) { void *ptr = malloc(size); |