summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/alpm_list.h
diff options
context:
space:
mode:
authorNagy Gabor <ngaba@bibl.u-szeged.hu>2008-02-23 22:31:20 +0100
committerChantry Xavier <shiningxc@gmail.com>2008-02-25 00:52:58 +0100
commit8cfccf68c1c7fdd45c172d49115e56e04dae2a2c (patch)
tree2b84593fe5858dbf541845849b6191f2f804f991 /lib/libalpm/alpm_list.h
parent3ad3077d8d5bb0d67652d0045e3e5eaf4eef6ffb (diff)
downloadpacman-8cfccf68c1c7fdd45c172d49115e56e04dae2a2c.tar.gz
pacman-8cfccf68c1c7fdd45c172d49115e56e04dae2a2c.tar.xz
alpm_list.c clean-up
* Introduces 'list == NULL' convention for empty list. That means alpm_list_new isn't needed anymore, so kill it * Small straightforward fixes in alpm_list.c Signed-off-by: Nagy Gabor <ngaba@bibl.u-szeged.hu> Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
Diffstat (limited to 'lib/libalpm/alpm_list.h')
-rw-r--r--lib/libalpm/alpm_list.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/libalpm/alpm_list.h b/lib/libalpm/alpm_list.h
index 057b6b5c..b3846ba0 100644
--- a/lib/libalpm/alpm_list.h
+++ b/lib/libalpm/alpm_list.h
@@ -47,7 +47,6 @@ typedef void (*alpm_list_fn_free)(void *); /* item deallocation callback */
typedef int (*alpm_list_fn_cmp)(const void *, const void *); /* item comparison callback */
/* allocation */
-alpm_list_t *alpm_list_new(void);
void alpm_list_free(alpm_list_t *list);
void alpm_list_free_inner(alpm_list_t *list, alpm_list_fn_free fn);