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 /build/rpmbuild.h | |
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 'build/rpmbuild.h')
-rw-r--r-- | build/rpmbuild.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build/rpmbuild.h b/build/rpmbuild.h index 8abdc507b..e7aeaf97c 100644 --- a/build/rpmbuild.h +++ b/build/rpmbuild.h @@ -6,13 +6,13 @@ * This is the *only* module users of librpmbuild should need to include. */ -#include "rpmcli.h" +#include <rpmcli.h> /* and it shouldn't need these :-( */ -#include "stringbuf.h" +#include <stringbuf.h> /* but this will be needed */ -#include "rpmspec.h" +#include <rpmspec.h> #ifdef __cplusplus extern "C" { |