diff options
| author | Bruce Momjian <bruce@momjian.us> | 2004-09-26 01:40:55 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2004-09-26 01:40:55 +0000 |
| commit | e9ec10494e09e2b5a4659b454693ee5bcb15e5b2 (patch) | |
| tree | 372fdd983f365f4205da36667b881217a531db66 /src/interfaces/libpq/pthread-win32.c | |
| parent | 6e7dd373849e6df09a277479d8ccab7ffa0241d3 (diff) | |
| download | postgresql-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.c | 6 |
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() |
