From 1d53dd716d7c7bea297a532809c4557b805a9918 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Tue, 5 Jul 2011 22:36:40 -0500 Subject: include util.h in rawstr.c Fixes "error: no previous prototype for '_alpm_raw_cmp' [-Werror=missing-prototypes]" warnings, and also prevents someone from getting the prototypes and functions out of sync. Signed-off-by: Dan McGee --- lib/libalpm/rawstr.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/libalpm/rawstr.c') diff --git a/lib/libalpm/rawstr.c b/lib/libalpm/rawstr.c index 69224cbc..86f4280c 100644 --- a/lib/libalpm/rawstr.c +++ b/lib/libalpm/rawstr.c @@ -27,6 +27,8 @@ #include +#include "util.h" + /* Portable, consistent toupper (remember EBCDIC). Do not use toupper() because its behavior is altered by the current locale. */ static char raw_toupper(char in) -- cgit v1.2.3-24-g4f1b