summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/xmalloc.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1999-09-30 04:30:04 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1999-09-30 04:30:04 +0000
commit069a77948545d9ac1a6dcf2cfdceb1806b08f71a (patch)
treec904b5b6cc49e7813ffe197ce6c58c995804df78 /usr.bin/ssh/xmalloc.c
parentd195ee786dbd0f0e6ca4819216ec7eed440b7750 (diff)
more culling
Diffstat (limited to 'usr.bin/ssh/xmalloc.c')
-rw-r--r--usr.bin/ssh/xmalloc.c8
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);