diff options
author | Dave Reisner <dreisner@archlinux.org> | 2011-09-18 16:19:32 -0400 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-09-18 16:57:09 -0500 |
commit | c12fa4ab192da0a1cd5c61b2f70e154205401e6b (patch) | |
tree | e0be0bbd51878fe6ce8ed487bc3c608ed856e3b2 /src | |
parent | b1a09b93ef626995a009ae3144fc130cc60a4078 (diff) | |
download | pacman-c12fa4ab192da0a1cd5c61b2f70e154205401e6b.tar.xz |
pactree: include missing ctype.h header
needed for isspace() -- avoids warnings on OSX.
Signed-off-by: Dave Reisner <dreisner@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/util/pactree.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util/pactree.c b/src/util/pactree.c index b8832912..11ca4b9e 100644 --- a/src/util/pactree.c +++ b/src/util/pactree.c @@ -19,6 +19,7 @@ #include "config.h" +#include <ctype.h> #include <getopt.h> #include <stdio.h> #include <string.h> |