diff options
author | Jim Meyering <jim@meyering.net> | 2001-05-12 15:41:11 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-05-12 15:41:11 +0000 |
commit | 1450c855b62084c0e490e7738282932425cf3a9c (patch) | |
tree | 0a26a55365f54d2d5c963b4b6d512ed32a8ab4b1 /lib | |
parent | 3c9e00c4fdfd04d20b8310fd32cc4a5d9f0b49c6 (diff) | |
download | coreutils-1450c855b62084c0e490e7738282932425cf3a9c.tar.xz |
Use "", not <> to include non-system header files.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/backupfile.c | 6 | ||||
-rw-r--r-- | lib/rename.c | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/lib/backupfile.c b/lib/backupfile.c index 0339caee2..fa5ece199 100644 --- a/lib/backupfile.c +++ b/lib/backupfile.c @@ -107,9 +107,9 @@ char *malloc (); # define REAL_DIR_ENTRY(dp) 1 #endif -#include <argmatch.h> -#include <backupfile.h> -#include <dirname.h> +#include "argmatch.h" +#include "backupfile.h" +#include "dirname.h" /* The extension added to file names to produce a simple (as opposed to numbered) backup file name. */ diff --git a/lib/rename.c b/lib/rename.c index 57676c964..13b86d043 100644 --- a/lib/rename.c +++ b/lib/rename.c @@ -30,8 +30,8 @@ # include <strings.h> #endif -#include <dirname.h> -#include <xalloc.h> +#include "dirname.h" +#include "xalloc.h" #ifndef HAVE_DECL_FREE "this configure-time declaration test was not run" |