]> git.saurik.com Git - bison.git/blobdiff - src/system.h
* src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
[bison.git] / src / system.h
index 83e2b0a51f0bde196afc8ac3bb2636f9b4e7b458..f57247897e84dc15c12e301de369472de53d58a6 100644 (file)
@@ -73,6 +73,26 @@ extern int errno;
 # define PARAMS(p) ()
 #endif
 
+
+
+/*---------------------.
+| Missing prototypes.  |
+`---------------------*/
+
+#if !HAVE_DECL_STPCPY
+char *stpcpy PARAMS ((char *dest, const char *src));
+#endif
+
+#if !HAVE_DECL_STRNDUP
+char *strndup PARAMS ((const char *s, size_t size));
+#endif
+
+#if !HAVE_DECL_STRNLEN
+size_t strnlen PARAMS ((const char *s, size_t maxlen));
+#endif
+
+
+
 /*-----------------.
 | GCC extensions.  |
 `-----------------*/