diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2015-01-15 06:20:57 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2015-01-15 06:20:57 +0200 |
commit | 28f563a6f54c8ea9c63537356966508c4685b538 (patch) | |
tree | d7d4ce59c4b76ccb66548c49c3b3dfdb7be3d771 /getopt.c | |
parent | f18e168ff20217143bd922f158a1c56058795e89 (diff) | |
parent | a59a81a68ca26293f8e3df25da2cfe20e61d7c85 (diff) | |
download | egawk-28f563a6f54c8ea9c63537356966508c4685b538.tar.gz egawk-28f563a6f54c8ea9c63537356966508c4685b538.tar.bz2 egawk-28f563a6f54c8ea9c63537356966508c4685b538.zip |
Merge branch 'gawk-4.1-stable'
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); |