diff options
author | jbj <devnull@localhost> | 2002-06-22 18:51:56 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2002-06-22 18:51:56 +0000 |
commit | 05cb73a7ee762065339393057d421613866e0418 (patch) | |
tree | 533b7192c83e882aab90c337d4356735932de7f0 /tools | |
parent | ba41c1ccb13a7a27466470e501a0d4f30fddec40 (diff) | |
download | rpm-05cb73a7ee762065339393057d421613866e0418.tar.gz rpm-05cb73a7ee762065339393057d421613866e0418.tar.bz2 rpm-05cb73a7ee762065339393057d421613866e0418.zip |
Factor bounds checking annotations into source code.
CVS patchset: 5521
CVS date: 2002/06/22 18:51:56
Diffstat (limited to 'tools')
-rw-r--r-- | tools/rpmarchive.c | 2 | ||||
-rw-r--r-- | tools/rpmheader.c | 2 | ||||
-rw-r--r-- | tools/rpmlead.c | 2 | ||||
-rw-r--r-- | tools/rpmsignature.c | 1 |
4 files changed, 4 insertions, 3 deletions
diff --git a/tools/rpmarchive.c b/tools/rpmarchive.c index 210fda1f1..34a06a059 100644 --- a/tools/rpmarchive.c +++ b/tools/rpmarchive.c @@ -2,7 +2,7 @@ #include "system.h" -#include "header.h" +#include <rpmlib.h> #include "rpmlead.h" #include "signature.h" diff --git a/tools/rpmheader.c b/tools/rpmheader.c index 2cc79ec48..9633d9f3a 100644 --- a/tools/rpmheader.c +++ b/tools/rpmheader.c @@ -2,7 +2,7 @@ #include "system.h" -#include "header.h" +#include <rpmlib.h> #include "rpmlead.h" #include "signature.h" #include "debug.h" diff --git a/tools/rpmlead.c b/tools/rpmlead.c index 7eb5c02f4..ff67fdb89 100644 --- a/tools/rpmlead.c +++ b/tools/rpmlead.c @@ -2,7 +2,7 @@ #include "system.h" -#include "rpmio.h" +#include <rpmlib.h> #include "rpmlead.h" #include "debug.h" diff --git a/tools/rpmsignature.c b/tools/rpmsignature.c index e39c5142a..f916f5ec4 100644 --- a/tools/rpmsignature.c +++ b/tools/rpmsignature.c @@ -2,6 +2,7 @@ #include "system.h" +#include <rpmlib.h> #include "rpmlead.h" #include "signature.h" #include "debug.h" |