diff options
author | ewt <devnull@localhost> | 1997-01-17 16:20:18 +0000 |
---|---|---|
committer | ewt <devnull@localhost> | 1997-01-17 16:20:18 +0000 |
commit | c1ba92895474b316b6b5b69e7b2a5cf6ab193110 (patch) | |
tree | 86f479bf37066defbe547fb3c8727de2a7b6c8aa /url.c | |
parent | c40e834ea0e7fec8af9b59bc09d1b3639199b5b6 (diff) | |
download | rpm-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.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 |