Skip to content

Commit 87fffc4

Browse files
committed
Various bug fixes based on a bug report submitted by
Doug Neuhauser <doug@seismo.berkeley.edu> on April 15th
1 parent 2bbc2e2 commit 87fffc4

File tree

6 files changed

+9
-348
lines changed

6 files changed

+9
-348
lines changed

src/include/c.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
* Copyright (c) 1994, Regents of the University of California
99
*
10-
* $Id: c.h,v 1.11 1997/04/15 17:55:37 scrappy Exp $
10+
* $Id: c.h,v 1.12 1997/04/24 20:00:45 scrappy Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -743,6 +743,7 @@ extern char *form(char *fmt, ...);
743743

744744
#if defined(sunos4)
745745
#define memmove(d, s, l) bcopy(s, d, l)
746+
#include <unistd.h>
746747
#endif
747748

748749
/* These are for things that are one way on Unix and another on NT */

src/include/port/sunos4.h

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
# define USE_POSIX_TIME
1+
#define USE_POSIX_TIME
2+
#ifndef BYTE_ORDER
3+
# define BYTE_ORDER BIG_ENDIAN
4+
#endif
5+

src/template/sunos4-cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AROPT:crs
1+
AROPT:cr
22
CFLAGS:
33
SHARED_LIB:-PIC
44
ALL:

src/template/sunos4-gcc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AROPT:crs
1+
AROPT:cr
22
CFLAGS:
33
SHARED_LIB:-fPIC
44
ALL:

src/test/regress/input/create_function.source

Lines changed: 0 additions & 74 deletions
This file was deleted.

src/test/regress/input/create_misc.source

Lines changed: 0 additions & 270 deletions
This file was deleted.

0 commit comments

Comments
 (0)