diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/c.h | 4 | ||||
-rw-r--r-- | src/include/config.h.in | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/src/include/c.h b/src/include/c.h index 0da7efdf57..fbb6dba546 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -7,7 +7,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: c.h,v 1.34 1998/02/12 01:50:01 momjian Exp $ + * $Id: c.h,v 1.35 1998/02/24 06:04:35 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -792,7 +792,7 @@ extern char *form(const char *fmt,...); #endif /* hpux */ #endif -#if defined(sunos4) +#if defined(sun) && defined(sparc) && !defined(__svr4) #define memmove(d, s, l) bcopy(s, d, l) #include <unistd.h> #endif diff --git a/src/include/config.h.in b/src/include/config.h.in index 3d37bbc9fb..f1f1dc1a8e 100644 --- a/src/include/config.h.in +++ b/src/include/config.h.in @@ -162,6 +162,9 @@ extern int strcasecmp(char *s1, char *s2); /* Set to 1 if you have strtol() */ #undef HAVE_STRTOL +/* Set to 1 if you have strtoul() */ +#undef HAVE_STRTOUL + /* Set to 1 if you have strdup() */ #undef HAVE_STRDUP #ifndef HAVE_STRDUP |