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 /lib/misc.c | |
parent | 2f400a54b2194cc1caee95cb0a3da74f4bce1735 (diff) | |
download | librpm-tizen-8bd997f2e0d977ddde56ea4debad83197355a2c9.tar.gz librpm-tizen-8bd997f2e0d977ddde56ea4debad83197355a2c9.tar.bz2 librpm-tizen-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 'lib/misc.c')
-rw-r--r-- | lib/misc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/misc.c b/lib/misc.c index f0d019a4c..20a23e4dc 100644 --- a/lib/misc.c +++ b/lib/misc.c @@ -1,7 +1,7 @@ #include "system.h" -#include "rpmlib.h" -#include "rpmmacro.h" /* XXX for rpmGetPath */ +#include <rpmlib.h> +#include <rpmmacro.h> /* XXX for rpmGetPath */ #include "misc.h" |