diff options
author | 1998-02-08 22:45:03 +0000 | |
---|---|---|
committer | 1998-02-08 22:45:03 +0000 | |
commit | aee6272ac51c2d00ca690c6984232124ae35e159 (patch) | |
tree | 88512d967d9d8d02cfd1149b5d3585bca590fec5 /lib/libc/sys/Lint_brk.c | |
parent | Pull in prototype (diff) | |
download | wireguard-openbsd-aee6272ac51c2d00ca690c6984232124ae35e159.tar.xz wireguard-openbsd-aee6272ac51c2d00ca690c6984232124ae35e159.zip |
Better lint(1) framework. Mostly from cgd@NetBSD
Diffstat (limited to 'lib/libc/sys/Lint_brk.c')
-rw-r--r-- | lib/libc/sys/Lint_brk.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/libc/sys/Lint_brk.c b/lib/libc/sys/Lint_brk.c new file mode 100644 index 00000000000..665d423abb9 --- /dev/null +++ b/lib/libc/sys/Lint_brk.c @@ -0,0 +1,17 @@ +/* $OpenBSD: Lint_brk.c,v 1.1 1998/02/08 22:45:09 tholo Exp $ */ +/* $NetBSD: Lint_brk.c,v 1.1 1997/11/06 00:52:52 cgd Exp $ */ + +/* + * This file placed in the public domain. + * Chris Demetriou, November 5, 1997. + */ + +#include <unistd.h> + +/*ARGSUSED*/ +char * +brk(addr) + const char *addr; +{ + return (0); +} |