diff options
author | Dan McGee <dan@archlinux.org> | 2007-03-05 22:13:33 +0000 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-03-05 22:13:33 +0000 |
commit | 869e81e1cf115e835040d0ecadb6108880103abe (patch) | |
tree | 2c67f7f304e27cfab2b9d7b1fd48f8b15a914dd4 /lib/libalpm/alpm.c | |
parent | facb99098d8d28f7bd3ac1aeb02ab0e158f9cff2 (diff) | |
download | pacman-869e81e1cf115e835040d0ecadb6108880103abe.tar.xz |
This commit looks much more monumental than it is. Almost all just #include
reordering and adding ones that were forgotten (noticed when trying to
compile after reordering).
* Updated the HACKING file to include information on #include usage.
* print -> vprint in "making dir" function in pactest.
Diffstat (limited to 'lib/libalpm/alpm.c')
-rw-r--r-- | lib/libalpm/alpm.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/libalpm/alpm.c b/lib/libalpm/alpm.c index 8553c558..d4833199 100644 --- a/lib/libalpm/alpm.c +++ b/lib/libalpm/alpm.c @@ -22,6 +22,8 @@ * USA. */ +#include "config.h" + #include <stdio.h> #include <stdlib.h> #include <errno.h> @@ -36,14 +38,15 @@ #include <limits.h> /* PATH_MAX */ #include <stdarg.h> #include <libintl.h> -/* pacman */ -#include "config.h" + +/* libalpm */ +#include "alpm.h" +#include "alpm_list.h" #include "log.h" #include "error.h" #include "versioncmp.h" #include "md5.h" #include "sha1.h" -#include "alpm_list.h" #include "package.h" #include "group.h" #include "util.h" @@ -58,7 +61,6 @@ #include "handle.h" #include "provide.h" #include "server.h" -#include "alpm.h" #define min(X, Y) ((X) < (Y) ? (X) : (Y)) |