diff options
author | tjr <tjr@FreeBSD.org> | 2003-01-07 06:17:13 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2003-01-07 06:17:13 +0000 |
commit | 278502705708a62034bb000c9b9fcb55fef1dfa4 (patch) | |
tree | bda83f3fddf18120a738e209fa9747472608e1db /lib/libc/stdio | |
parent | a1a372be062a31bd03532d13658cd116d437ea96 (diff) | |
download | FreeBSD-src-278502705708a62034bb000c9b9fcb55fef1dfa4.zip FreeBSD-src-278502705708a62034bb000c9b9fcb55fef1dfa4.tar.gz |
#include <stdlib.h> for free()'s prototype.
Diffstat (limited to 'lib/libc/stdio')
-rw-r--r-- | lib/libc/stdio/stdio.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libc/stdio/stdio.c b/lib/libc/stdio/stdio.c index 01d954d..daae1a2 100644 --- a/lib/libc/stdio/stdio.c +++ b/lib/libc/stdio/stdio.c @@ -45,6 +45,7 @@ __FBSDID("$FreeBSD$"); #include <fcntl.h> #include <limits.h> #include <stdio.h> +#include <stdlib.h> #include <unistd.h> #include "un-namespace.h" #include "local.h" |