diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2002-08-21 17:20:58 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2002-08-21 17:20:58 +0000 |
commit | b7a5917a614be9ef190b0d9663f17960d317dfe1 (patch) | |
tree | 2a722a0df00c6ad2d4ccb205350e852ff7cf5122 /src | |
parent | 0f9f2feee4d4a6c86efb8d2bf8daa97d976389a3 (diff) | |
download | postgresql-b7a5917a614be9ef190b0d9663f17960d317dfe1.tar.gz postgresql-b7a5917a614be9ef190b0d9663f17960d317dfe1.zip |
Add sys/types.h to common includes.
Diffstat (limited to 'src')
-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 1f50ae44f6d..bfae5536a59 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -12,7 +12,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: c.h,v 1.121 2002/06/20 20:29:42 momjian Exp $ + * $Id: c.h,v 1.122 2002/08/21 17:20:58 petere Exp $ * *------------------------------------------------------------------------- */ @@ -60,6 +60,7 @@ #ifdef HAVE_STRINGS_H #include <strings.h> #endif +#include <sys/types.h> #ifdef __CYGWIN__ #include <errno.h> |