diff options
author | 2015-07-20 08:51:41 +0000 | |
---|---|---|
committer | 2015-07-20 08:51:41 +0000 | |
commit | 8269d3287b200bb0e07d0b28db47a0dc2e264d1c (patch) | |
tree | 0dd1205f97789ff4bc1a166f85f42e49897cbd1c /usr.bin/file/xmalloc.h | |
parent | go a bit further with miods last change to copy{in,out}{,str} and (diff) | |
download | wireguard-openbsd-8269d3287b200bb0e07d0b28db47a0dc2e264d1c.tar.xz wireguard-openbsd-8269d3287b200bb0e07d0b28db47a0dc2e264d1c.zip |
Remove leftover xfree() prototype.
Diffstat (limited to 'usr.bin/file/xmalloc.h')
-rw-r--r-- | usr.bin/file/xmalloc.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/file/xmalloc.h b/usr.bin/file/xmalloc.h index 8adb3e6f104..7bb1aa318f7 100644 --- a/usr.bin/file/xmalloc.h +++ b/usr.bin/file/xmalloc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: xmalloc.h,v 1.1 2015/04/24 16:24:11 nicm Exp $ */ +/* $OpenBSD: xmalloc.h,v 1.2 2015/07/20 08:51:41 nicm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -22,7 +22,6 @@ void *xmalloc(size_t); void *xcalloc(size_t, size_t); void *xreallocarray(void *, size_t, size_t); -void xfree(void *); char *xstrdup(const char *); int xasprintf(char **, const char *, ...) __attribute__((__format__ (printf, 2, 3))) |