diff options
author | Dan McGee <dan@archlinux.org> | 2007-04-25 02:21:12 -0400 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-04-25 11:07:47 -0400 |
commit | 5e1419c0b5cf717e57959bc27eeab1cfa4bea5dc (patch) | |
tree | 446f884852a55db94bc50bbfe7ef42a1b45a152a /src/pacman/conf.c | |
parent | 339caa61ef4b52a450bf0ce785fd68c38b546be1 (diff) |
Merge single-function header files on pacman side
Having a seperate header file for add, remove, query, etc. seemed overkill.
Merge them all into a common pacman.h and fix the necessary #includes.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'src/pacman/conf.c')
-rw-r--r-- | src/pacman/conf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pacman/conf.c b/src/pacman/conf.c index 045bdcf6..18146ca1 100644 --- a/src/pacman/conf.c +++ b/src/pacman/conf.c @@ -31,9 +31,9 @@ /* pacman */ #include "conf.h" +#include "pacman.h" #include "util.h" #include "log.h" -#include "sync.h" #include "downloadprog.h" config_t *config_new(void) |