diff options
author | dd <dd@FreeBSD.org> | 2001-06-24 23:04:23 +0000 |
---|---|---|
committer | dd <dd@FreeBSD.org> | 2001-06-24 23:04:23 +0000 |
commit | ef9ae51ffe0b0740160f5ace4bac9572716a5ff3 (patch) | |
tree | 5ed494ef479747a729c33dd6fcfc26c15c6fe70a /sbin/mount | |
parent | 50bd3d18aa017e35e13921385b77f731e5d46e2e (diff) | |
download | FreeBSD-src-ef9ae51ffe0b0740160f5ace4bac9572716a5ff3.zip FreeBSD-src-ef9ae51ffe0b0740160f5ace4bac9572716a5ff3.tar.gz |
Include missing header files which define functions for which gcc has
builtins (e.g., exit, strcmp).
Diffstat (limited to 'sbin/mount')
-rw-r--r-- | sbin/mount/mount_ufs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sbin/mount/mount_ufs.c b/sbin/mount/mount_ufs.c index 15cabb2..8c626db 100644 --- a/sbin/mount/mount_ufs.c +++ b/sbin/mount/mount_ufs.c @@ -51,6 +51,7 @@ static const char rcsid[] = #include <err.h> #include <errno.h> #include <stdio.h> +#include <stdlib.h> #include <unistd.h> #include <ufs/ufs/ufsmount.h> |