diff options
| author | Jim Meyering <jim@meyering.net> | 1998-03-15 11:09:10 +0000 |
|---|---|---|
| committer | Jim Meyering <jim@meyering.net> | 1998-03-15 11:09:10 +0000 |
| commit | bfbc3ce20cdcfd00c27922c2e78cbff43846fe0d (patch) | |
| tree | 2045f8cb784dbc4f5cb1cbaf83e0d0b05f7277e2 /lib/path-concat.c | |
| parent | . (diff) | |
| download | coreutils-bfbc3ce20cdcfd00c27922c2e78cbff43846fe0d.tar.gz coreutils-bfbc3ce20cdcfd00c27922c2e78cbff43846fe0d.zip | |
Use #if, not #ifdef with HAVE_ macros
Diffstat (limited to 'lib/path-concat.c')
| -rw-r--r-- | lib/path-concat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/path-concat.c b/lib/path-concat.c index b0c18a8c5..abafd31ee 100644 --- a/lib/path-concat.c +++ b/lib/path-concat.c @@ -1,5 +1,5 @@ /* path-concat.c -- concatenate two arbitrary pathnames - Copyright (C) 1996, 1997 Free Software Foundation, Inc. + Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -17,7 +17,7 @@ /* Written by Jim Meyering. */ -#ifdef HAVE_CONFIG_H +#if HAVE_CONFIG_H # include <config.h> #endif @@ -26,7 +26,7 @@ #endif #include <stdio.h> -#ifdef HAVE_STRING_H +#if HAVE_STRING_H # include <string.h> #endif #include <sys/types.h> |
