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 /bin/pax/pax.c | |
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 'bin/pax/pax.c')
-rw-r--r-- | bin/pax/pax.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/pax/pax.c b/bin/pax/pax.c index bc97d7d..3d5bd4d 100644 --- a/bin/pax/pax.c +++ b/bin/pax/pax.c @@ -61,6 +61,7 @@ static const char rcsid[] = #include <signal.h> #include <stdio.h> #include <stdlib.h> +#include <string.h> #include <unistd.h> #include "pax.h" #include "extern.h" |