diff options
author | Ralf Corsépius <corsepiu@fedoraproject.org> | 2007-11-23 06:46:19 +0100 |
---|---|---|
committer | Ralf Corsépius <corsepiu@fedoraproject.org> | 2007-11-23 06:46:19 +0100 |
commit | abeea80a38682069fe97e69c0c8ca71475497ba0 (patch) | |
tree | 1889ce4d6632eb42cdbf3722b76da5df6f8c330d /lib/rpmgi.c | |
parent | 7fb2899b84ec829cb72a059e7ae32b23a7c80669 (diff) | |
download | rpm-abeea80a38682069fe97e69c0c8ca71475497ba0.tar.gz rpm-abeea80a38682069fe97e69c0c8ca71475497ba0.tar.bz2 rpm-abeea80a38682069fe97e69c0c8ca71475497ba0.zip |
Use #include <x.h> syntax to include public headers.
Diffstat (limited to 'lib/rpmgi.c')
-rw-r--r-- | lib/rpmgi.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/rpmgi.c b/lib/rpmgi.c index e868885ca..9b2e12514 100644 --- a/lib/rpmgi.c +++ b/lib/rpmgi.c @@ -3,15 +3,15 @@ */ #include "system.h" -#include "rpmlib.h" -#include "rpmte.h" /* XXX rpmElementType */ +#include <rpmlib.h> +#include <rpmte.h> /* XXX rpmElementType */ #include "rpmgi_internal.h" -#include "rpmdb.h" -#include "rpmmacro.h" /* XXX rpmExpand */ +#include <rpmdb.h> +#include <rpmmacro.h> /* XXX rpmExpand */ #include "manifest.h" -#include "rpmlog.h" +#include <rpmlog.h> #include "debug.h" |