summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2011-09-18 22:19:32 +0200
committerDan McGee <dan@archlinux.org>2011-09-18 23:57:09 +0200
commitc12fa4ab192da0a1cd5c61b2f70e154205401e6b (patch)
treee0be0bbd51878fe6ce8ed487bc3c608ed856e3b2 /src
parentb1a09b93ef626995a009ae3144fc130cc60a4078 (diff)
downloadpacman-c12fa4ab192da0a1cd5c61b2f70e154205401e6b.tar.gz
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.c1
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>