diff options
author | Dan McGee <dan@archlinux.org> | 2007-04-28 09:54:25 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-04-28 09:54:25 +0200 |
commit | a57b2f233f28c275b0b171cb291415351f9ec87d (patch) | |
tree | 2a3cd06f53fc4d4b917c1a2f98414e445fee72ae /lib/libalpm/alpm_list.h | |
parent | a8b683d8e29510742f94c7ff558cda19d6644b68 (diff) | |
download | pacman-a57b2f233f28c275b0b171cb291415351f9ec87d.tar.gz pacman-a57b2f233f28c275b0b171cb291415351f9ec87d.tar.xz |
Remove FREELISTPTR macro
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/alpm_list.h')
-rw-r--r-- | lib/libalpm/alpm_list.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/libalpm/alpm_list.h b/lib/libalpm/alpm_list.h index 838bd775..5812907f 100644 --- a/lib/libalpm/alpm_list.h +++ b/lib/libalpm/alpm_list.h @@ -43,10 +43,7 @@ struct __alpm_list_t { struct __alpm_list_t *next; }; -/* TODO we should do away with these... they're messy*/ -#define _FREELIST(p, f) do { alpm_list_free_inner(p, f); alpm_list_free(p); p = NULL; } while(0) -#define FREELIST(p) _FREELIST(p, free) -#define FREELISTPTR(p) do { alpm_list_free(p); p = NULL; } while(0) +#define FREELIST(p) do { alpm_list_free_inner(p, free); alpm_list_free(p); p = NULL; } while(0) typedef void (*alpm_list_fn_free)(void *); /* item deallocation callback */ typedef int (*alpm_list_fn_cmp)(const void *, const void *); /* item comparison callback */ |