summaryrefslogtreecommitdiff
path: root/src/interfaces/libpq/pthread-win32.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2004-09-26 01:40:55 +0000
committerBruce Momjian <bruce@momjian.us>2004-09-26 01:40:55 +0000
commite9ec10494e09e2b5a4659b454693ee5bcb15e5b2 (patch)
tree372fdd983f365f4205da36667b881217a531db66 /src/interfaces/libpq/pthread-win32.c
parent6e7dd373849e6df09a277479d8ccab7ffa0241d3 (diff)
downloadpostgresql-e9ec10494e09e2b5a4659b454693ee5bcb15e5b2.tar.gz
Use <> not "" for include of pthread.h.
Diffstat (limited to 'src/interfaces/libpq/pthread-win32.c')
-rw-r--r--src/interfaces/libpq/pthread-win32.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interfaces/libpq/pthread-win32.c b/src/interfaces/libpq/pthread-win32.c
index 24bdca2918..0f45eb068f 100644
--- a/src/interfaces/libpq/pthread-win32.c
+++ b/src/interfaces/libpq/pthread-win32.c
@@ -5,14 +5,14 @@
*
* Copyright (c) 2004, PostgreSQL Global Development Group
* IDENTIFICATION
-* $PostgreSQL: pgsql/src/interfaces/libpq/pthread-win32.c,v 1.2 2004/08/29 05:07:00 momjian Exp $
+* $PostgreSQL: pgsql/src/interfaces/libpq/pthread-win32.c,v 1.3 2004/09/26 01:40:53 momjian Exp $
*
*-------------------------------------------------------------------------
*/
-#include "windows.h"
-#include "pthread.h"
+#include <windows.h>
+#include <pthread.h>
HANDLE
pthread_self()