diff options
author | Marc G. Fournier <scrappy@hub.org> | 1997-04-24 20:02:02 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1997-04-24 20:02:02 +0000 |
commit | 87fffc4342016b1ef50b35553521e70dc9bfc057 (patch) | |
tree | b1d171d7b62b8a3f589d69e1c1d1cdc30fe15d89 /src/include/c.h | |
parent | 2bbc2e2c0d748439398d5f60d7f7a6b4a1782c50 (diff) | |
download | postgresql-87fffc4342016b1ef50b35553521e70dc9bfc057.tar.gz postgresql-87fffc4342016b1ef50b35553521e70dc9bfc057.zip |
Various bug fixes based on a bug report submitted by
Doug Neuhauser <doug@seismo.berkeley.edu> on April 15th
Diffstat (limited to 'src/include/c.h')
-rw-r--r-- | src/include/c.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/c.h b/src/include/c.h index e07f7c2918c..6b163f95626 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.11 1997/04/15 17:55:37 scrappy Exp $ + * $Id: c.h,v 1.12 1997/04/24 20:00:45 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -743,6 +743,7 @@ extern char *form(char *fmt, ...); #if defined(sunos4) #define memmove(d, s, l) bcopy(s, d, l) +#include <unistd.h> #endif /* These are for things that are one way on Unix and another on NT */ |