diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2000-04-14 10:30:35 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2000-04-14 10:30:35 +0000 |
commit | 1474d2d4568d5bcd006e338c6073e91d5c571412 (patch) | |
tree | a8da7eaca38cf33d5431625f1c779c6b71ea6a2e /usr.bin/ssh/xmalloc.c | |
parent | d03442ba263d0a1dcc4c61728720cfbfe1d3c0dd (diff) |
whitespace cleanup
Diffstat (limited to 'usr.bin/ssh/xmalloc.c')
-rw-r--r-- | usr.bin/ssh/xmalloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/xmalloc.c b/usr.bin/ssh/xmalloc.c index afcdbd97cab..31550991a2b 100644 --- a/usr.bin/ssh/xmalloc.c +++ b/usr.bin/ssh/xmalloc.c @@ -8,7 +8,7 @@ */ #include "includes.h" -RCSID("$Id: xmalloc.c,v 1.5 1999/11/24 00:26:04 deraadt Exp $"); +RCSID("$Id: xmalloc.c,v 1.6 2000/04/14 10:30:34 markus Exp $"); #include "ssh.h" @@ -34,7 +34,7 @@ xrealloc(void *ptr, size_t new_size) return new_ptr; } -void +void xfree(void *ptr) { if (ptr == NULL) |