diff options
author | Jim Meyering <jim@meyering.net> | 2001-05-12 15:40:47 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-05-12 15:40:47 +0000 |
commit | 3c9e00c4fdfd04d20b8310fd32cc4a5d9f0b49c6 (patch) | |
tree | e7d8976e4e2f3f92ec40c6241efc6d472ce65237 /lib | |
parent | e149a84b32eef30aa3a998a25f7836aea13c964a (diff) | |
download | coreutils-3c9e00c4fdfd04d20b8310fd32cc4a5d9f0b49c6.tar.xz |
Use "", not <> to include non-system header files.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/addext.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/addext.c b/lib/addext.c index 65db258f6..edd56c3dd 100644 --- a/lib/addext.c +++ b/lib/addext.c @@ -47,8 +47,8 @@ # include <unistd.h> #endif -#include <backupfile.h> -#include <dirname.h> +#include "backupfile.h" +#include "dirname.h" /* Append to FILENAME the extension EXT, unless the result would be too long, in which case just append the character E. */ |