diff options
author | Aurelien Foret <aurelien@archlinux.org> | 2006-02-17 22:35:26 +0000 |
---|---|---|
committer | Aurelien Foret <aurelien@archlinux.org> | 2006-02-17 22:35:26 +0000 |
commit | be39f49a5461d5804e4391266dfea6dd076691f4 (patch) | |
tree | 911a7f550895d9fdda7b4846d6775699549b2bf4 /lib/libalpm/group.h | |
parent | 5e4c3661c6066623bbfa34bacccfafda5be21315 (diff) | |
download | pacman-be39f49a5461d5804e4391266dfea6dd076691f4.tar.xz |
prepend library function names with _alpm (helped with the patch from VMiklos <vmiklos@frugalware.org>)
added log and event callbacks to sync_commit internal transactions
Diffstat (limited to 'lib/libalpm/group.h')
-rw-r--r-- | lib/libalpm/group.h | 8 |
1 files changed, 4 insertions, 4 deletions
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 */ |