1 # --- T2-COPYRIGHT-NOTE-BEGIN ---
2 # T2 SDE: package/*/coreutils/hotfix.patch.musl
3 # Copyright (C) 2021 The T2 SDE Project
5 # This Copyright note is generated by scripts/Create-CopyPatch,
6 # more information can be found in the files COPYING and README.
8 # This patch file is dual-licensed. It is available under the license the
9 # patched project is licensed under, as long as it is an OpenSource license
10 # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
11 # of the GNU General Public License version 2 as used by the T2 SDE.
12 # --- T2-COPYRIGHT-NOTE-END ---
14 --- coreutils-9.0/src/ls.c.vanilla 2021-10-09 23:18:16.244303461 +0200
15 +++ coreutils-9.0/src/ls.c 2021-10-09 23:20:06.139303416 +0200
19 /* Suppress bogus warning re comparing ws.ws_col to big integer. */
20 -# if __GNUC_PREREQ (4, 6)
22 # pragma GCC diagnostic push
23 # pragma GCC diagnostic ignored "-Wtype-limits"
26 && 0 <= ioctl (STDOUT_FILENO, TIOCGWINSZ, &ws)
28 linelen = ws.ws_col <= MIN (PTRDIFF_MAX, SIZE_MAX) ? ws.ws_col : 0;
29 -# if __GNUC_PREREQ (4, 6)
31 # pragma GCC diagnostic pop