diff options
author | nate <nate@FreeBSD.org> | 1993-11-12 07:05:54 +0000 |
---|---|---|
committer | nate <nate@FreeBSD.org> | 1993-11-12 07:05:54 +0000 |
commit | 0ed72634295eab0018dcb17d89c196206eb60c8a (patch) | |
tree | ccdf94118f89667bc5481656e35a277126890ddc /gnu/usr.bin/diff/getopt1.c | |
parent | fbf13a99b770ab2f131e13a138ec4d9575a70308 (diff) | |
download | FreeBSD-src-0ed72634295eab0018dcb17d89c196206eb60c8a.zip FreeBSD-src-0ed72634295eab0018dcb17d89c196206eb60c8a.tar.gz |
Updated to GNU diffutils 2.6
Diffstat (limited to 'gnu/usr.bin/diff/getopt1.c')
-rw-r--r-- | gnu/usr.bin/diff/getopt1.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/gnu/usr.bin/diff/getopt1.c b/gnu/usr.bin/diff/getopt1.c index a32615c..f784b57 100644 --- a/gnu/usr.bin/diff/getopt1.c +++ b/gnu/usr.bin/diff/getopt1.c @@ -17,14 +17,25 @@ Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifdef HAVE_CONFIG_H +#if defined (emacs) || defined (CONFIG_BROKETS) +/* We use <config.h> instead of "config.h" so that a compilation + using -I. -I$srcdir will use ./config.h rather than $srcdir/config.h + (which it would do because it found this file in $srcdir). */ +#include <config.h> +#else #include "config.h" #endif +#endif #include "getopt.h" -#if !__STDC__ && !defined(const) && IN_GCC +#ifndef __STDC__ +/* This is a separate conditional since some stdc systems + reject `defined (const)'. */ +#ifndef const #define const #endif +#endif #include <stdio.h> |