diff options
author | 2005-11-28 16:54:07 +0000 | |
---|---|---|
committer | 2005-11-28 16:54:07 +0000 | |
commit | 7bcdde720d7911df4e750a235fdce02cbb4514d3 (patch) | |
tree | 8fa2dece379ccd08970119fa6274b721aeeef5f3 /lib/libc/sys/Lint_brk.c | |
parent | fix month-old breakage found by genududes (after henning's breakage) (diff) | |
download | wireguard-openbsd-7bcdde720d7911df4e750a235fdce02cbb4514d3.tar.xz wireguard-openbsd-7bcdde720d7911df4e750a235fdce02cbb4514d3.zip |
make Lint prototypes equal; ok millert
Diffstat (limited to 'lib/libc/sys/Lint_brk.c')
-rw-r--r-- | lib/libc/sys/Lint_brk.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/sys/Lint_brk.c b/lib/libc/sys/Lint_brk.c index a652d8ebc3a..3d194b81941 100644 --- a/lib/libc/sys/Lint_brk.c +++ b/lib/libc/sys/Lint_brk.c @@ -1,4 +1,4 @@ -/* $OpenBSD: Lint_brk.c,v 1.2 2004/09/14 22:18:56 deraadt Exp $ */ +/* $OpenBSD: Lint_brk.c,v 1.3 2005/11/28 16:54:07 deraadt Exp $ */ /* $NetBSD: Lint_brk.c,v 1.1 1997/11/06 00:52:52 cgd Exp $ */ /* @@ -9,8 +9,8 @@ #include <unistd.h> /*ARGSUSED*/ -char * -brk(const char *addr) +void * +brk(void *addr) { return (0); } |