Commit e9ec1049 authored by Bruce Momjian's avatar Bruce Momjian

Use <> not "" for include of pthread.h.

parent 6e7dd373
...@@ -5,14 +5,14 @@ ...@@ -5,14 +5,14 @@
* *
* Copyright (c) 2004, PostgreSQL Global Development Group * Copyright (c) 2004, PostgreSQL Global Development Group
* IDENTIFICATION * 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 <windows.h>
#include "pthread.h" #include <pthread.h>
HANDLE HANDLE
pthread_self() pthread_self()
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* $PostgreSQL: pgsql/src/tools/thread/thread_test.c,v 1.33 2004/08/29 05:07:03 momjian Exp $ * $PostgreSQL: pgsql/src/tools/thread/thread_test.c,v 1.34 2004/09/26 01:40:55 momjian Exp $
* *
* This program tests to see if your standard libc functions use * This program tests to see if your standard libc functions use
* pthread_setspecific()/pthread_getspecific() to be thread-safe. * pthread_setspecific()/pthread_getspecific() to be thread-safe.
...@@ -59,7 +59,7 @@ main(int argc, char *argv[]) ...@@ -59,7 +59,7 @@ main(int argc, char *argv[])
#else #else
/* This must be down here because this is the code that uses threads. */ /* This must be down here because this is the code that uses threads. */
#include "pthread.h" #include <pthread.h>
void func_call_1(void); void func_call_1(void);
void func_call_2(void); void func_call_2(void);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment