repo.or.cz
/
oi-userland.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
python/rapidfuzz: update to 3.11.0
[oi-userland.git]
/
components
/
shell
/
getopt
/
patches
/
getopt.c.patch
blob
a17877fb1bd3ca3ebbbf7ffac24aed25f6e2683f
1
Need to #include <locale.h>
2
as LC_ALL wasn't being found otherwise.
3
4
--- getopt-1.1.5/getopt.c.orig 2012-11-14 07:57:53.606143868 -0800
5
+++ getopt-1.1.5/getopt.c 2012-11-14 08:03:26.644112033 -0800
6
@@ -58,6 +58,7 @@
7
#include <string.h>
8
#include <unistd.h>
9
#include <ctype.h>
10
+#include <locale.h>
11
12
#if LIBCGETOPT
13
#include <getopt.h>