summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/alpm_list.h
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2011-07-04 00:38:09 +0200
committerDan McGee <dan@archlinux.org>2011-07-05 17:22:05 +0200
commit97103f860d48e1f6f9c0dd7c75568618f8ed5163 (patch)
treee1f79f41530c121ae4ee9d49bad379c2008ee2bd /lib/libalpm/alpm_list.h
parentc748eadc80593c3941b55b1d4ec6e46899abd295 (diff)
downloadpacman-97103f860d48e1f6f9c0dd7c75568618f8ed5163.tar.gz
pacman-97103f860d48e1f6f9c0dd7c75568618f8ed5163.tar.xz
Remove alpm_list_first
The only thing this accessor did was remove the const qualifier given our entire list implementation requires passing around the head anyway. Signed-off-by: Allan McRae <allan@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org>
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 27a76d12..824e8660 100644
--- a/lib/libalpm/alpm_list.h
+++ b/lib/libalpm/alpm_list.h
@@ -67,7 +67,6 @@ alpm_list_t *alpm_list_copy_data(const alpm_list_t *list, size_t size);
alpm_list_t *alpm_list_reverse(alpm_list_t *list);
/* item accessors */
-alpm_list_t *alpm_list_first(const alpm_list_t *list);
alpm_list_t *alpm_list_nth(const alpm_list_t *list, size_t n);
alpm_list_t *alpm_list_next(const alpm_list_t *list);
alpm_list_t *alpm_list_previous(const alpm_list_t *list, const alpm_list_t *node);