diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2015-08-24 11:46:00 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2015-08-24 11:46:00 +0000 |
commit | 340d5bba5e506039e1554e0190629f384609959d (patch) | |
tree | 7a2a0758d50404af990feaf644e3c4e14b3c5bf5 /gnu/usr.bin/cxxfilt | |
parent | b30474ae7f7ec05f540054194923cf7ffca50c54 (diff) |
add missing includes for free, exit, errx and strchr
Diffstat (limited to 'gnu/usr.bin/cxxfilt')
-rw-r--r-- | gnu/usr.bin/cxxfilt/cxxfilt.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/usr.bin/cxxfilt/cxxfilt.c b/gnu/usr.bin/cxxfilt/cxxfilt.c index 2772ea0e40c..1804eb23301 100644 --- a/gnu/usr.bin/cxxfilt/cxxfilt.c +++ b/gnu/usr.bin/cxxfilt/cxxfilt.c @@ -32,6 +32,9 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include "getopt.h" #include "safe-ctype.h" #include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <err.h> char *program_name; #if 0 |