diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-01-08 21:53:19 -0500 |
---|---|---|
committer | Brandon Philips <brandon@ifup.org> | 2010-01-22 14:53:39 -0800 |
commit | 235cdd2af498d288f1af1142e7a23fbd16dff907 (patch) | |
tree | a0d245e0c6ca527b6b5ceae3ad39523d7938b1c5 | |
parent | 1a80c89ee88357137b598fa3357b576933c5746c (diff) | |
download | attr-235cdd2af498d288f1af1142e7a23fbd16dff907.tar.gz |
quote: pull in string.h for strchr prototype
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Brandon Philips <brandon@ifup.org>
-rw-r--r-- | libmisc/quote.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libmisc/quote.c b/libmisc/quote.c index f98c887..bf8f9eb 100644 --- a/libmisc/quote.c +++ b/libmisc/quote.c @@ -20,6 +20,7 @@ #include <stdio.h> #include <stdlib.h> #include <ctype.h> +#include <string.h> #include "misc.h" const char *quote(const char *str, const char *quote_chars) |