diff options
author | Bruce Momjian | 2004-09-26 01:40:55 +0000 |
---|---|---|
committer | Bruce Momjian | 2004-09-26 01:40:55 +0000 |
commit | e9ec10494e09e2b5a4659b454693ee5bcb15e5b2 (patch) | |
tree | 372fdd983f365f4205da36667b881217a531db66 /src/tools/thread/thread_test.c | |
parent | 6e7dd373849e6df09a277479d8ccab7ffa0241d3 (diff) |
Use <> not "" for include of pthread.h.
Diffstat (limited to 'src/tools/thread/thread_test.c')
-rw-r--r-- | src/tools/thread/thread_test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/thread/thread_test.c b/src/tools/thread/thread_test.c index 08a027d6e9e..5d4eae1bbb7 100644 --- a/src/tools/thread/thread_test.c +++ b/src/tools/thread/thread_test.c @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group * 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 * pthread_setspecific()/pthread_getspecific() to be thread-safe. @@ -59,7 +59,7 @@ main(int argc, char *argv[]) #else /* 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_2(void); |