summaryrefslogtreecommitdiff
path: root/url.c
diff options
context:
space:
mode:
authorewt <devnull@localhost>1997-01-17 16:20:18 +0000
committerewt <devnull@localhost>1997-01-17 16:20:18 +0000
commitc1ba92895474b316b6b5b69e7b2a5cf6ab193110 (patch)
tree86f479bf37066defbe547fb3c8727de2a7b6c8aa /url.c
parentc40e834ea0e7fec8af9b59bc09d1b3639199b5b6 (diff)
downloadrpm-c1ba92895474b316b6b5b69e7b2a5cf6ab193110.tar.gz
rpm-c1ba92895474b316b6b5b69e7b2a5cf6ab193110.tar.bz2
rpm-c1ba92895474b316b6b5b69e7b2a5cf6ab193110.zip
1) use config.h if available
2) use if not ifdef CVS patchset: 1312 CVS date: 1997/01/17 16:20:18
Diffstat (limited to 'url.c')
-rw-r--r--url.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/url.c b/url.c
index 740fcd36f..d816845cd 100644
--- a/url.c
+++ b/url.c
@@ -1,3 +1,5 @@
+#include "config.h"
+
#include <fcntl.h>
#include <pwd.h>
#include <string.h>
@@ -5,7 +7,7 @@
#include <stdlib.h>
#include <unistd.h>
-#ifdef HAVE_ALLOCA_H
+#if HAVE_ALLOCA_H
# include <alloca.h>
#endif