Cross Reference: solaris-003.glob.c.patch
xref
: /
solaris-userland
/
components
/
bash
/
patches
/
solaris-003.glob.c.patch
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
5516
N/A
# Solaris-specific patch. alloca(3c) is not visible without
5516
N/A
# including <
alloca.h
>.
5516
N/A
# Not for upstream.
110
N/A
---
lib/glob/glob.c
2009-11-14 15:39:30.000000000 -0800
110
N/A
+++
lib/glob/glob.c
2010-09-01 10:28:10.161379481 -0700
110
N/A
@@ -34,6 +34,10 @@
110
N/A
# include <
unistd.h
>
110
N/A
#endif
110
N/A
110
N/A
+#if defined (HAVE_ALLOCA) && defined (HAVE_ALLOCA_H)
110
N/A
+# include <
alloca.h
>
110
N/A
+#endif
110
N/A
+
110
N/A
#include "
bashansi.h
"
110
N/A
#include "
posixdir.h
"
110
N/A
#include "
posixstat.h
"