From: Ulrich Drepper Date: Mon, 14 Sep 1998 12:16:30 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/glibc-2_0_96~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f624c2161095fe47c9449caf9e68a1914913319f;p=thirdparty%2Fglibc.git Update. 1998-08-26 Geoff Keating * csu/init.c: Don't drag _IO_2_1_stdin_ into the executable. --- diff --git a/ChangeLog b/ChangeLog index 00d0704af6f..9bb90352d0e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +1998-08-26 Geoff Keating + + * csu/init.c: Don't drag _IO_2_1_stdin_ into the executable. + 1998-09-14 11:26 Ulrich Drepper * wcsmbs/wcsmbs-tst1.c: Include stdlib.h. diff --git a/csu/init.c b/csu/init.c index df08f6c9189..a2d16361f1f 100644 --- a/csu/init.c +++ b/csu/init.c @@ -28,10 +28,9 @@ #if defined USE_IN_LIBIO && defined __GNUC__ && __GNUC__ >= 2 -#undef _LIBC -#include +#include <_G_config.h> /* This records which stdio is linked against in the application. */ -const void *const _IO_stdin_used = _IO_stdin; +const int _IO_stdin_used = _G_IO_IO_FILE_VERSION; #endif