diff options
Diffstat (limited to 'src/port/thread.c')
-rw-r--r-- | src/port/thread.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/port/thread.c b/src/port/thread.c index d61b2b41caa..bfdf1bd2829 100644 --- a/src/port/thread.c +++ b/src/port/thread.c @@ -7,15 +7,13 @@ * * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/port/thread.c,v 1.29 2004/12/31 22:03:53 pgsql Exp $ + * $PostgreSQL: pgsql/src/port/thread.c,v 1.30 2005/07/28 04:03:14 tgl Exp $ * *------------------------------------------------------------------------- */ #include "c.h" -#include <sys/types.h> -#include <errno.h> #ifdef WIN32_CLIENT_ONLY #undef ERROR #else @@ -25,6 +23,7 @@ #include <pthread.h> #endif + /* * Threading sometimes requires specially-named versions of functions * that return data in static buffers, like strerror_r() instead of |