index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2007-11-06 22:50:21 -0600 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2007-11-06 23:23:03 -0600 |
commit | d0d58489ff8b4458719e4bceb6a5d7290c99588a (patch) | |
tree | ec4ef398dd77ef795d6a14e199f31007a5881d54 | |
parent | 2ee90ddae23dd86c68223c0d6c49f0b92d62429d (diff) |
-rw-r--r-- | lib/libalpm/util.h | 2 |
diff --git a/lib/libalpm/util.h b/lib/libalpm/util.h index 5d0b3693..85735287 100644 --- a/lib/libalpm/util.h +++ b/lib/libalpm/util.h @@ -28,6 +28,7 @@ #include "config.h" #include <stdio.h> +#include <string.h> #include <stdarg.h> #include <time.h> #include <sys/stat.h> /* struct stat */ @@ -44,6 +45,7 @@ #define MALLOC(p, s, action) do { p = calloc(1, s); if(p == NULL) { ALLOC_FAIL(s); action; } } while(0) #define CALLOC(p, l, s, action) do { p = calloc(l, s); if(p == NULL) { ALLOC_FAIL(s); action; } } while(0) +#define STRDUP(r, s, action) do { r = strdup(s); if(r == NULL) { ALLOC_FAIL(strlen(s)); action; } } while(0) #define FREE(p) do { if(p) { free(p); p = NULL; } } while(0) |