diff options
author | Aaron Griffin <aaron@archlinux.org> | 2006-10-21 01:27:35 +0000 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2006-10-21 01:27:35 +0000 |
commit | 1568fd98d882add6c91255b331592691f399bd3f (patch) | |
tree | 0af5de033e21567b68e2935ae58108cb096086e0 /lib/libalpm/handle.h | |
parent | ca2544dbc2a88501a5f1a4d94c81e5fc1da716d1 (diff) | |
download | pacman-1568fd98d882add6c91255b331592691f399bd3f.tar.xz |
Minor changes:
* Moved the pmhandle_t extern decl around
* Fixed a doxygen complaint
Diffstat (limited to 'lib/libalpm/handle.h')
-rw-r--r-- | lib/libalpm/handle.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libalpm/handle.h b/lib/libalpm/handle.h index 0bd37afd..9311f724 100644 --- a/lib/libalpm/handle.h +++ b/lib/libalpm/handle.h @@ -59,6 +59,8 @@ typedef struct __pmhandle_t { pmlist_t *needles; /* for searching */ } pmhandle_t; +extern pmhandle_t *handle; + #define FREEHANDLE(p) do { if (p) { _alpm_handle_free(p); p = NULL; } } while (0) pmhandle_t *_alpm_handle_new(void); |