diff options
author | des <des@FreeBSD.org> | 2001-06-19 12:03:14 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2001-06-19 12:03:14 +0000 |
commit | 059ac03bdfb9896cc579c07ded5a00a5c3deade3 (patch) | |
tree | 75ac12dc366f914d2150c9a8805bee723fa88b16 /bin/sync | |
parent | 56e683fe9071d80a208ec0a824d812e6b4cf1b4f (diff) | |
download | FreeBSD-src-059ac03bdfb9896cc579c07ded5a00a5c3deade3.zip FreeBSD-src-059ac03bdfb9896cc579c07ded5a00a5c3deade3.tar.gz |
<stdlib.h> is needed for exit(3) when building with -fno-builtin.
Diffstat (limited to 'bin/sync')
-rw-r--r-- | bin/sync/sync.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/sync/sync.c b/bin/sync/sync.c index 2a3b518..019b8fd 100644 --- a/bin/sync/sync.c +++ b/bin/sync/sync.c @@ -45,6 +45,7 @@ static const char rcsid[] = "$FreeBSD$"; #endif /* not lint */ +#include <stdlib.h> #include <unistd.h> int main __P((void)); |