summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1993-10-12 02:37:45 +0000
committerJim Meyering <jim@meyering.net>1993-10-12 02:37:45 +0000
commitbdd7c906182c19b2317fa80fc6b00f0a7ad39158 (patch)
tree1bee88f10f3c910cee176df03b0b4b3599a0f57d
parent15bda956325f7804589f59d06bba2641b486ebf8 (diff)
downloadgnulib-bdd7c906182c19b2317fa80fc6b00f0a7ad39158.tar.gz
GNU shell utilitiesSHELLUTILS-1_8_1c
-rw-r--r--lib/getdate.y19
-rw-r--r--lib/posixtm.y28
2 files changed, 36 insertions, 11 deletions
diff --git a/lib/getdate.y b/lib/getdate.y
index e15a886a0c..df1a08a98d 100644
--- a/lib/getdate.y
+++ b/lib/getdate.y
@@ -31,6 +31,25 @@
#undef static
#endif
+/* The following block of alloca-related preprocessor directives is here
+ solely to allow compilation by non GNU-C compilers of the C parser
+ produced from this file by old versions of bison. Newer versions of
+ bison include a block similar to this one in bison.simple. */
+
+#ifdef __GNUC__
+#define alloca __builtin_alloca
+#else
+#ifdef HAVE_ALLOCA_H
+#include <alloca.h>
+#else
+#ifdef _AIX
+ #pragma alloca
+#else
+void *alloca ();
+#endif
+#endif
+#endif
+
#ifdef __GNUC__
#undef alloca
#define alloca __builtin_alloca
diff --git a/lib/posixtm.y b/lib/posixtm.y
index ea81ef134f..678c74afe4 100644
--- a/lib/posixtm.y
+++ b/lib/posixtm.y
@@ -17,6 +17,23 @@
/* Written by Jim Kingdon and David MacKenzie. */
%{
+
+#ifdef HAVE_CONFIG_H
+#if defined (CONFIG_BROKETS)
+/* We use <config.h> instead of "config.h" so that a compilation
+ using -I. -I will use ./config.h rather than /config.h
+ (which it would do because it found this file in ). */
+#include <config.h>
+#else
+#include "config.h"
+#endif
+#endif
+
+/* The following block of alloca-related preprocessor directives is here
+ solely to allow compilation by non GNU-C compilers of the C parser
+ produced from this file by old versions of bison. Newer versions of
+ bison include a block similar to this one in bison.simple. */
+
#ifdef __GNUC__
#define alloca __builtin_alloca
#else
@@ -31,17 +48,6 @@ void *alloca ();
#endif
#endif
-#ifdef HAVE_CONFIG_H
-#if defined (CONFIG_BROKETS)
-/* We use <config.h> instead of "config.h" so that a compilation
- using -I. -I will use ./config.h rather than /config.h
- (which it would do because it found this file in ). */
-#include <config.h>
-#else
-#include "config.h"
-#endif
-#endif
-
#include <stdio.h>
#include <sys/types.h>