diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2015-01-20 22:05:05 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2015-01-20 22:05:05 +0200 |
commit | 812d26bb6b672f3f5153c00e4edcb2377a723afd (patch) | |
tree | 3178af3ca22a20b07bd3ef9716d81df181f04761 /getopt.c | |
parent | 128a3e884d9541ec5b96c02a19db38ac3c404bf1 (diff) | |
parent | 4c01db1833a02173c910d463eaed77ad6ed66195 (diff) | |
download | egawk-812d26bb6b672f3f5153c00e4edcb2377a723afd.tar.gz egawk-812d26bb6b672f3f5153c00e4edcb2377a723afd.tar.bz2 egawk-812d26bb6b672f3f5153c00e4edcb2377a723afd.zip |
Merge branch 'master' into wasted-byte
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); |