diff options
author | Dan McGee <dan@archlinux.org> | 2007-11-04 12:05:22 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-11-04 12:05:22 -0600 |
commit | 86ca39d15e02dff47b5b0f5bcd0494cf101ce0c1 (patch) | |
tree | 4475913a7dd0fe5facbe9bed369aba34f67134aa /src/pacman/conf.c | |
parent | 006387828cbdd11e6307879ad27e9bb9409ca193 (diff) |
Clean up usage of extern variables
Instead of declaring the extern variable in every *.c file, include it in
the header file that makes sense. This means handle.h for the handle, and
conf.h for the pacman side config object.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'src/pacman/conf.c')
-rw-r--r-- | src/pacman/conf.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pacman/conf.c b/src/pacman/conf.c index 21256d77..9b5850d7 100644 --- a/src/pacman/conf.c +++ b/src/pacman/conf.c @@ -28,6 +28,9 @@ /* pacman */ #include "conf.h" +/* global config variable */ +config_t *config = NULL; + config_t *config_new(void) { config_t *newconfig = calloc(1, sizeof(config_t)); |