mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-15 23:33:03 +00:00
(PARAMS): Remove.
Include <limits.h> unconditionally, since it's guaranteeed even for a freestanding C89 compiler. (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
This commit is contained in:
32
src/system.h
32
src/system.h
@@ -79,28 +79,12 @@ char *alloca ();
|
|||||||
extern int errno;
|
extern int errno;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef PARAMS
|
#include <limits.h>
|
||||||
# if defined PROTOTYPES || defined __STDC__
|
|
||||||
# define PARAMS(Args) Args
|
|
||||||
# else
|
|
||||||
# define PARAMS(Args) ()
|
|
||||||
# endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if HAVE_LIMITS_H
|
|
||||||
# include <limits.h>
|
|
||||||
#endif
|
|
||||||
#ifndef SHRT_MIN
|
|
||||||
# define SHRT_MIN (-32768)
|
|
||||||
#endif
|
|
||||||
#ifndef SHRT_MAX
|
|
||||||
# define SHRT_MAX 32767
|
|
||||||
#endif
|
|
||||||
|
|
||||||
# include "xalloc.h"
|
# include "xalloc.h"
|
||||||
|
|
||||||
/* From xstrndup.c. */
|
/* From xstrndup.c. */
|
||||||
char *xstrndup PARAMS ((const char *s, size_t n));
|
char *xstrndup (const char *s, size_t n);
|
||||||
|
|
||||||
|
|
||||||
/*----------------.
|
/*----------------.
|
||||||
@@ -116,27 +100,27 @@ extern int time_report;
|
|||||||
`---------------------*/
|
`---------------------*/
|
||||||
|
|
||||||
#if !HAVE_DECL_STPCPY
|
#if !HAVE_DECL_STPCPY
|
||||||
char *stpcpy PARAMS ((char *dest, const char *src));
|
char *stpcpy (char *dest, const char *src);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !HAVE_DECL_STRCHR
|
#if !HAVE_DECL_STRCHR
|
||||||
char *strchr(const char *s, int c);
|
char *strchr (const char *s, int c);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !HAVE_DECL_STRSPN
|
#if !HAVE_DECL_STRSPN
|
||||||
size_t strspn(const char *s, const char *accept);
|
size_t strspn (const char *s, const char *accept);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !HAVE_DECL_STRNLEN
|
#if !HAVE_DECL_STRNLEN
|
||||||
size_t strnlen PARAMS ((const char *s, size_t maxlen));
|
size_t strnlen (const char *s, size_t maxlen);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !HAVE_DECL_MEMCHR
|
#if !HAVE_DECL_MEMCHR
|
||||||
void *memchr PARAMS ((const void *s, int c, size_t n));
|
void *memchr (const void *s, int c, size_t n);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !HAVE_DECL_MEMRCHR
|
#if !HAVE_DECL_MEMRCHR
|
||||||
void *memrchr PARAMS ((const void *s, int c, size_t n));
|
void *memrchr (const void *s, int c, size_t n);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user