1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-24 09:27:52 +03:00

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

This commit is contained in:
Bruce Momjian
2004-09-26 01:40:55 +00:00
parent 6e7dd37384
commit e9ec10494e
2 changed files with 5 additions and 5 deletions

View File

@@ -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()