From 0c4f7d821c1cd4ce559476595e2108f75b3dde7c Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Mon, 22 Oct 2007 21:33:47 -0700 Subject: Fix broken or missing includes Signed-off-by: Dan McGee --- lib/libalpm/util.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'lib/libalpm/util.h') diff --git a/lib/libalpm/util.h b/lib/libalpm/util.h index 5b6fac99..3154f470 100644 --- a/lib/libalpm/util.h +++ b/lib/libalpm/util.h @@ -27,20 +27,20 @@ #include #include -#include /* here so it doesn't need to be included elsewhere */ #include -#define FREE(p) do { if (p) { free(p); p = NULL; } } while(0) - -#define ASSERT(cond, action) do { if(!(cond)) { action; } } while(0) - -/* define _() as shortcut for gettext() */ #ifdef ENABLE_NLS +#include /* here so it doesn't need to be included elsewhere */ +/* define _() as shortcut for gettext() */ #define _(str) dgettext ("libalpm", str) #else #define _(s) s #endif +#define FREE(p) do { if (p) { free(p); p = NULL; } } while(0) + +#define ASSERT(cond, action) do { if(!(cond)) { action; } } while(0) + int _alpm_makepath(const char *path); int _alpm_copyfile(const char *src, const char *dest); char *_alpm_strtrim(char *str); -- cgit v1.2.3-24-g4f1b