From be39f49a5461d5804e4391266dfea6dd076691f4 Mon Sep 17 00:00:00 2001 From: Aurelien Foret Date: Fri, 17 Feb 2006 22:35:26 +0000 Subject: prepend library function names with _alpm (helped with the patch from VMiklos ) added log and event callbacks to sync_commit internal transactions --- lib/libalpm/group.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/libalpm/group.h') diff --git a/lib/libalpm/group.h b/lib/libalpm/group.h index c00cc23e..6fa3a24c 100644 --- a/lib/libalpm/group.h +++ b/lib/libalpm/group.h @@ -31,7 +31,7 @@ typedef struct __pmgrp_t { PMList *packages; /* List of strings */ } pmgrp_t; -#define FREEGRP(p) do { if(p) { grp_free(p); p = NULL; } } while(0) +#define FREEGRP(p) do { if(p) { _alpm_grp_free(p); p = NULL; } } while(0) #define FREELISTGRPS(p) do { \ PMList *i; \ @@ -41,9 +41,9 @@ typedef struct __pmgrp_t { FREELIST(p); \ } while(0) -pmgrp_t *grp_new(void); -void grp_free(pmgrp_t *grp); -int grp_cmp(const void *g1, const void *g2); +pmgrp_t *_alpm_grp_new(void); +void _alpm_grp_free(pmgrp_t *grp); +int _alpm_grp_cmp(const void *g1, const void *g2); #endif /* _ALPM_GROUP_H */ -- cgit v1.2.3-24-g4f1b