diff options
author | Dan McGee <dan@archlinux.org> | 2007-11-04 19:05:22 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-11-04 19:05:22 +0100 |
commit | 86ca39d15e02dff47b5b0f5bcd0494cf101ce0c1 (patch) | |
tree | 4475913a7dd0fe5facbe9bed369aba34f67134aa /src/pacman/add.c | |
parent | 006387828cbdd11e6307879ad27e9bb9409ca193 (diff) | |
download | pacman-86ca39d15e02dff47b5b0f5bcd0494cf101ce0c1.tar.gz pacman-86ca39d15e02dff47b5b0f5bcd0494cf101ce0c1.tar.xz |
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/add.c')
-rw-r--r-- | src/pacman/add.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/pacman/add.c b/src/pacman/add.c index f883a6bd..987e62cb 100644 --- a/src/pacman/add.c +++ b/src/pacman/add.c @@ -34,8 +34,6 @@ #include "conf.h" #include "util.h" -extern config_t *config; - /* Free the current transaction and print an error if unsuccessful */ static int add_cleanup(void) { |