diff options
author | Andrew J. Schorr <aschorr@telemetry-investments.com> | 2015-01-19 15:04:21 -0500 |
---|---|---|
committer | Andrew J. Schorr <aschorr@telemetry-investments.com> | 2015-01-19 15:04:21 -0500 |
commit | 1edb5cb33d55a4f866c799d41680088b927f7846 (patch) | |
tree | 5f74270aa4eae77f6057c1d038ce8da88f5f38da /getopt.c | |
parent | 2d3f4ffebcb451da84ceb8a4be58bbb23946ee6e (diff) | |
parent | f77c13a546af58cb8cdb593f49bbfa844b10dd7e (diff) | |
download | egawk-1edb5cb33d55a4f866c799d41680088b927f7846.tar.gz egawk-1edb5cb33d55a4f866c799d41680088b927f7846.tar.bz2 egawk-1edb5cb33d55a4f866c799d41680088b927f7846.zip |
Merge branch 'master' into select
Diffstat (limited to 'getopt.c')
-rw-r--r-- | getopt.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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-2014 Free Software Foundation, Inc. + Copyright (C) 1987-2015 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 @@ -613,7 +613,7 @@ _getopt_internal_r (int argc, char *const *argv, const char *optstring, fputc_unlocked ('\n', fp); - if (__builtin_expect (fclose (fp) != EOF, 1)) + if (__glibc_likely (fclose (fp) != EOF)) { _IO_flockfile (stderr); |