diff options
author | Ralf Corsépius <corsepiu@fedoraproject.org> | 2007-10-28 06:57:08 +0100 |
---|---|---|
committer | Ralf Corsépius <corsepiu@fedoraproject.org> | 2007-10-28 06:57:08 +0100 |
commit | bb3c8db9a5428f1cab562ea205e6b1305822fe5d (patch) | |
tree | b2e8c55f75eaf3e041d1de565bba942983565681 /misc | |
parent | a241ba959f4b47a9631995cb3991e61ee70fb6a4 (diff) | |
download | librpm-tizen-bb3c8db9a5428f1cab562ea205e6b1305822fe5d.tar.gz librpm-tizen-bb3c8db9a5428f1cab562ea205e6b1305822fe5d.tar.bz2 librpm-tizen-bb3c8db9a5428f1cab562ea205e6b1305822fe5d.zip |
Include "config.h" instead of <config.h>.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/alloca.c | 2 | ||||
-rw-r--r-- | misc/basename.c | 2 | ||||
-rw-r--r-- | misc/error.c | 2 | ||||
-rw-r--r-- | misc/mktime.c | 2 | ||||
-rw-r--r-- | misc/putenv.c | 2 | ||||
-rw-r--r-- | misc/stpcpy.c | 2 | ||||
-rw-r--r-- | misc/stpncpy.c | 2 | ||||
-rw-r--r-- | misc/strcspn.c | 2 | ||||
-rw-r--r-- | misc/strdup.c | 2 | ||||
-rw-r--r-- | misc/strftime.c | 2 | ||||
-rw-r--r-- | misc/strspn.c | 2 |
11 files changed, 11 insertions, 11 deletions
diff --git a/misc/alloca.c b/misc/alloca.c index c1699c42d..460580638 100644 --- a/misc/alloca.c +++ b/misc/alloca.c @@ -22,7 +22,7 @@ your main control loop, etc. to force garbage collection. */ #ifdef HAVE_CONFIG_H -#include <config.h> +#include "config.h" #endif #ifdef HAVE_STRING_H diff --git a/misc/basename.c b/misc/basename.c index 7fea76ed7..a948859f9 100644 --- a/misc/basename.c +++ b/misc/basename.c @@ -1,5 +1,5 @@ #ifdef HAVE_CONFIG_H -# include <config.h> +# include "config.h" #endif #ifdef HAVE_STRING_H #include <string.h> diff --git a/misc/error.c b/misc/error.c index ca7f3b47b..ac9b84e68 100644 --- a/misc/error.c +++ b/misc/error.c @@ -22,7 +22,7 @@ /* Written by David MacKenzie <djm@gnu.ai.mit.edu>. */ #ifdef HAVE_CONFIG_H -# include <config.h> +# include "config.h" #endif #include <stdio.h> diff --git a/misc/mktime.c b/misc/mktime.c index 6004bc055..bd52a22a5 100644 --- a/misc/mktime.c +++ b/misc/mktime.c @@ -23,7 +23,7 @@ /* #define DEBUG 1 */ #ifdef HAVE_CONFIG_H -#include <config.h> +#include "config.h" #endif /* Assume that leap seconds are possible, unless told otherwise. diff --git a/misc/putenv.c b/misc/putenv.c index c13e03c3f..15ee03715 100644 --- a/misc/putenv.c +++ b/misc/putenv.c @@ -21,7 +21,7 @@ Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include <errno.h> #ifdef HAVE_CONFIG_H -# include <config.h> +# include "config.h" #endif /* Define-away any (possibly conflicting) prototype of putenv. diff --git a/misc/stpcpy.c b/misc/stpcpy.c index 0ad8863cd..167d22db8 100644 --- a/misc/stpcpy.c +++ b/misc/stpcpy.c @@ -19,7 +19,7 @@ USA. */ #ifdef HAVE_CONFIG_H -# include <config.h> +# include "config.h" #endif #include <string.h> diff --git a/misc/stpncpy.c b/misc/stpncpy.c index fcbdfe505..cb218e3b5 100644 --- a/misc/stpncpy.c +++ b/misc/stpncpy.c @@ -21,7 +21,7 @@ /* This is almost copied from strncpy.c, written by Torbjorn Granlund. */ #ifdef HAVE_CONFIG_H -# include <config.h> +# include "config.h" #endif #ifdef _LIBC diff --git a/misc/strcspn.c b/misc/strcspn.c index 6c2e0b8a8..21bc3040f 100644 --- a/misc/strcspn.c +++ b/misc/strcspn.c @@ -19,7 +19,7 @@ USA. */ #if HAVE_CONFIG_H -# include <config.h> +# include "config.h" #endif #if defined _LIBC || HAVE_STRING_H diff --git a/misc/strdup.c b/misc/strdup.c index 7b73a50c2..cc50aa4d9 100644 --- a/misc/strdup.c +++ b/misc/strdup.c @@ -16,7 +16,7 @@ Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H -#include <config.h> +#include "config.h" #endif #ifdef STDC_HEADERS diff --git a/misc/strftime.c b/misc/strftime.c index 8c838f783..eff617af8 100644 --- a/misc/strftime.c +++ b/misc/strftime.c @@ -18,7 +18,7 @@ Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H -# include <config.h> +# include "config.h" #endif #ifdef _LIBC diff --git a/misc/strspn.c b/misc/strspn.c index 01d8d0fc5..90368b591 100644 --- a/misc/strspn.c +++ b/misc/strspn.c @@ -16,7 +16,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifdef HAVE_CONFIG_H -#include <config.h> +#include "config.h" #endif #if defined(HAVE_STRING_H) |