diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2007-10-29 12:55:43 +0200 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2007-10-29 12:55:43 +0200 |
commit | bdd3cd3ed6806466b4891db49098970fe335fb84 (patch) | |
tree | fd4112a322322482b16c77a788a8c9484c6c720b | |
parent | 6713c1e8078facbdc97a3e0073fa39a79dafa841 (diff) | |
download | rpm-bdd3cd3ed6806466b4891db49098970fe335fb84.tar.gz rpm-bdd3cd3ed6806466b4891db49098970fe335fb84.tar.bz2 rpm-bdd3cd3ed6806466b4891db49098970fe335fb84.zip |
Macros don't need rpmio_internal
-rw-r--r-- | rpmio/macro.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rpmio/macro.c b/rpmio/macro.c index f843985f9..8497b98ef 100644 --- a/rpmio/macro.c +++ b/rpmio/macro.c @@ -12,7 +12,8 @@ #define STREQ(_t, _f, _fn) ((_fn) == (sizeof(_t)-1) && !strncmp((_t), (_f), (_fn))) -#include "rpmio_internal.h" +#include "rpmio.h" +#include "rpmurl.h" #include "rpmmessages.h" #include "rpmerr.h" |