From 47a81620adc8c33631bd4b3b8d122c2a17940f8c Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 10 Jul 2000 20:02:00 +0000 Subject: Update. 2000-07-09 Mark Kettenis * elf/rtld.c (dl_main): Move call to __libc_check_standard_fds... * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): ... to here. 2000-07-10 Ulrich Drepper * include/features.h: Include ISO C99 features if the compiler used is an ISO C99 compiler. Patch by Joseph S. Myers . 2000-07-08 Mark Kettenis * iconv/gconv_conf.c: Include . --- include/features.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include/features.h') diff --git a/include/features.h b/include/features.h index ab3126cdbf..96ac7e5f75 100644 --- a/include/features.h +++ b/include/features.h @@ -152,7 +152,8 @@ which was used prior to the standard acceptance. This macro will eventually go away and the features enabled by default once the ISO C99 standard is widely adopted. */ -#if defined _ISOC99_SOURCE || defined _ISOC9X_SOURCE +#if (defined _ISOC99_SOURCE || defined _ISOC9X_SOURCE \ + || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L)) # define __USE_ISOC99 1 #endif -- cgit 1.4.1