diff options
author | jbj <devnull@localhost> | 1999-07-13 21:37:57 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 1999-07-13 21:37:57 +0000 |
commit | 8bd997f2e0d977ddde56ea4debad83197355a2c9 (patch) | |
tree | bff7739953a6a852bf857e08665c9d2d84aa3e7c /rpmio | |
parent | 2f400a54b2194cc1caee95cb0a3da74f4bce1735 (diff) | |
download | rpm-8bd997f2e0d977ddde56ea4debad83197355a2c9.tar.gz rpm-8bd997f2e0d977ddde56ea4debad83197355a2c9.tar.bz2 rpm-8bd997f2e0d977ddde56ea4debad83197355a2c9.zip |
Perl bindings need
#include <foo.h>
not
#include "foo.h"
CVS patchset: 3143
CVS date: 1999/07/13 21:37:57
Diffstat (limited to 'rpmio')
-rw-r--r-- | rpmio/macro.c | 4 | ||||
-rw-r--r-- | rpmio/messages.c | 2 | ||||
-rw-r--r-- | rpmio/rpmerr.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/rpmio/macro.c b/rpmio/macro.c index 3776450b0..06944ac7b 100644 --- a/rpmio/macro.c +++ b/rpmio/macro.c @@ -26,10 +26,10 @@ typedef int FD_t; #define fdRead read #define fdClose close #else -#include "rpmlib.h" +#include <rpmlib.h> #endif -#include "rpmmacro.h" +#include <rpmmacro.h> struct MacroContext globalMacroContext; diff --git a/rpmio/messages.c b/rpmio/messages.c index c07853e0c..342ea2bce 100644 --- a/rpmio/messages.c +++ b/rpmio/messages.c @@ -2,7 +2,7 @@ #include <stdarg.h> -#include "rpmlib.h" +#include <rpmlib.h> static int minLevel = RPMMESS_NORMAL; diff --git a/rpmio/rpmerr.c b/rpmio/rpmerr.c index 10b4ba223..fc05e7e87 100644 --- a/rpmio/rpmerr.c +++ b/rpmio/rpmerr.c @@ -2,7 +2,7 @@ #include <stdarg.h> -#include "rpmlib.h" +#include <rpmlib.h> static struct err { int code; |