diff options
Diffstat (limited to 'lib/libalpm/group.h')
-rw-r--r-- | lib/libalpm/group.h | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/lib/libalpm/group.h b/lib/libalpm/group.h index c92684e3..078c9af7 100644 --- a/lib/libalpm/group.h +++ b/lib/libalpm/group.h @@ -22,15 +22,8 @@ #include "alpm.h" -struct __pmgrp_t { - /** group name */ - char *name; - /** list of pmpkg_t packages */ - alpm_list_t *packages; -}; - -pmgrp_t *_alpm_grp_new(const char *name); -void _alpm_grp_free(pmgrp_t *grp); +alpm_group_t *_alpm_group_new(const char *name); +void _alpm_group_free(alpm_group_t *grp); #endif /* _ALPM_GROUP_H */ |