summaryrefslogtreecommitdiff
path: root/stdlib/isomac.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-03-28 07:18:56 +0000
committerUlrich Drepper <drepper@redhat.com>2001-03-28 07:18:56 +0000
commit4668903c627bf95b7767b3fa8c9a726035837aa3 (patch)
tree4bfa6074955e7d6e0fad8c7d4e5af12ddb8683e3 /stdlib/isomac.c
parent9dedc9695d85dd49118c67b252d722494cc8c2aa (diff)
Update.
* stdlib/isomac.c (fmt): Don't define _LIBC. * include/endian.h: Define BIG_ENDI, LITTLE_ENDI, HIGH_HALF, and LOW_HALF only if _LIBC is defined. * sysdeps/i386/fpu/libm-test-ulps: Slight adjustment of yn() error.
Diffstat (limited to 'stdlib/isomac.c')
-rw-r--r--stdlib/isomac.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/isomac.c b/stdlib/isomac.c
index 7148881d0f..cfb5672af6 100644
--- a/stdlib/isomac.c
+++ b/stdlib/isomac.c
@@ -1,5 +1,5 @@
/* Check system header files for ISO 9899:1990 (ISO C) compliance.
- Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+ Copyright (C) 1996, 1997, 1998, 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Jens Schweikhardt <schweikh@noc.dfn.de>, 1996.
@@ -176,7 +176,7 @@ static char *macros[] =
/* Format string to build command to invoke compiler. */
static const char fmt[] = "\
echo \"#include <%s>\" |\
-%s -E -dM -ansi -pedantic %s -D_LIBC -I. \
+%s -E -dM -ansi -pedantic %s -I. \
-isystem `%s --print-prog-name=include` - 2> /dev/null > %s";