summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian2004-04-27 17:22:41 +0000
committerBruce Momjian2004-04-27 17:22:41 +0000
commitb498b795a08527e72c813aa046dbafa8084a9994 (patch)
tree01e2a526acfed963d48cd7f890d5a1fc44a1658e
parent8f367dd31b24625e424f7bb40b3ae0b0e763b0bf (diff)
Move postgres.h to the top of the C file.
-rw-r--r--src/tools/thread/thread_test.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/tools/thread/thread_test.c b/src/tools/thread/thread_test.c
index 69ae43c0d6e..02e113db764 100644
--- a/src/tools/thread/thread_test.c
+++ b/src/tools/thread/thread_test.c
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/tools/thread/thread_test.c,v 1.25 2004/04/26 00:38:25 momjian Exp $
+ * $PostgreSQL: pgsql/src/tools/thread/thread_test.c,v 1.26 2004/04/27 17:22:41 momjian Exp $
*
* This program tests to see if your standard libc functions use
* pthread_setspecific()/pthread_getspecific() to be thread-safe.
@@ -20,8 +20,9 @@
*-------------------------------------------------------------------------
*/
-#include <stdio.h>
+#include "postgres.h"
+#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <netdb.h>
@@ -31,8 +32,6 @@
#include <fcntl.h>
#include <errno.h>
-#include "postgres.h"
-
#ifndef ENABLE_THREAD_SAFETY
int
main(int argc, char *argv[])