diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-05-30 17:53:23 -0400 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-05-30 17:53:23 -0400 |
commit | 5e0f3ebb5f985a9ad8fa3d57ab8c1f0669056630 (patch) | |
tree | 069f6948e1d810d249919784a900a927cb25b6a9 | |
parent | ce211fb7fcf1463619d2b2ef32b8f6c2f4f35459 (diff) | |
download | egawk-5e0f3ebb5f985a9ad8fa3d57ab8c1f0669056630.tar.gz egawk-5e0f3ebb5f985a9ad8fa3d57ab8c1f0669056630.tar.bz2 egawk-5e0f3ebb5f985a9ad8fa3d57ab8c1f0669056630.zip |
Update getopt from GLIBC.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | getopt.c | 4 | ||||
-rw-r--r-- | getopt.h | 2 | ||||
-rw-r--r-- | getopt1.c | 2 | ||||
-rw-r--r-- | getopt_int.h | 2 |
5 files changed, 7 insertions, 5 deletions
@@ -9,6 +9,8 @@ * field.c (set_FS): Handle FS = "\0" if RS = "". Thanks to Janis Papanagnou for the report. + * getopt.c, getopt.h, getopt1.c, getopt_int.h: Sync with GLIBC. + 2016-05-26 Andrew J. Schorr <aschorr@telemetry-investments.com> * awk.h (get_actual_argument): Remove unused "optional" argument. @@ -2,7 +2,7 @@ NOTE: getopt is part of the C library, so if you don't know what "Keep this file name-space clean" means, talk to drepper@gnu.org before changing it! - Copyright (C) 1987-2015 Free Software Foundation, Inc. + Copyright (C) 1987-2016 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -597,7 +597,7 @@ _getopt_internal_r (int argc, char *const *argv, const char *optstring, char *buf = NULL; size_t buflen = 0; - FILE *fp = open_memstream (&buf, &buflen); + FILE *fp = __open_memstream (&buf, &buflen); if (fp != NULL) { fprintf (fp, @@ -1,5 +1,5 @@ /* Declarations for getopt. - Copyright (C) 1989-2015 Free Software Foundation, Inc. + Copyright (C) 1989-2016 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -1,5 +1,5 @@ /* getopt_long and getopt_long_only entry points for GNU getopt. - Copyright (C) 1987-2015 Free Software Foundation, Inc. + Copyright (C) 1987-2016 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/getopt_int.h b/getopt_int.h index 03d62277..514a1beb 100644 --- a/getopt_int.h +++ b/getopt_int.h @@ -1,5 +1,5 @@ /* Internal declarations for getopt. - Copyright (C) 1989-2015 Free Software Foundation, Inc. + Copyright (C) 1989-2016 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or |