From: Ulrich Drepper Date: Mon, 17 Aug 1998 16:48:17 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/glibc-4-egcs-1_1~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=364ff81ffb6d7d4da023fe10339f2882b63a1f24;p=thirdparty%2Fglibc.git Update. 1998-08-17 Ulrich Drepper * posix/tstgetopt.c (options): Add NULL entry at end Patch by Adrian Miranda . --- diff --git a/ChangeLog b/ChangeLog index 709ff7cce24..2996fd6da74 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1998-08-17 Ulrich Drepper + + * posix/tstgetopt.c (options): Add NULL entry at end + Patch by Adrian Miranda . + 1998-08-15 18:21 Ulrich Drepper * elf/elf.h: Add EI_OSABI, ELFOSABI*, and EI_ABIVERSION. Move EI_PAD diff --git a/posix/tstgetopt.c b/posix/tstgetopt.c index 2258b20770a..40cf3d9c82a 100644 --- a/posix/tstgetopt.c +++ b/posix/tstgetopt.c @@ -9,9 +9,10 @@ main (int argc, char **argv) { {"required", required_argument, NULL, 'r'}, {"optional", optional_argument, NULL, 'o'}, - {"none", no_argument, NULL, 'n'} + {"none", no_argument, NULL, 'n'}, + {NULL, 0, NULL, 0 } }; - + int aflag = 0; int bflag = 0; char *cvalue = NULL;