diff options
Diffstat (limited to 'src/pacman/util.h')
-rw-r--r-- | src/pacman/util.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/pacman/util.h b/src/pacman/util.h index 15ce8043..b181dbd1 100644 --- a/src/pacman/util.h +++ b/src/pacman/util.h @@ -26,10 +26,8 @@ fprintf(stderr, "malloc failure: could not allocate %d bytes\n", b); \ exit(1); }} else p = NULL; } while(0) -#define FREE(p) do { if (p) { free(p); (p)= NULL; }} while(0) +#define FREE(p) do { if (p) { free(p); (p) = NULL; }} while(0) -long gzopen_frontend(char *pathname, int oflags, int mode); -int unpack(char *archive, const char *prefix, const char *fn); int makepath(char *path); int rmrf(char *path); void indentprint(char *str, int indent); |