File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 5
5
*
6
6
* Copyright (c) 2004-2007, PostgreSQL Global Development Group
7
7
* IDENTIFICATION
8
- * $PostgreSQL: pgsql/src/interfaces/libpq/pthread-win32.c,v 1.13 2007/01/05 22:20:01 momjian Exp $
8
+ * $PostgreSQL: pgsql/src/interfaces/libpq/pthread-win32.c,v 1.14 2007/04/18 08:32:40 mha Exp $
9
9
*
10
10
*-------------------------------------------------------------------------
11
11
*/
16
16
#include "pthread-win32.h"
17
17
18
18
DWORD
19
- pthread_self ()
19
+ pthread_self (void )
20
20
{
21
21
return GetCurrentThreadId ();
22
22
}
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ typedef ULONG pthread_key_t;
5
5
typedef HANDLE pthread_mutex_t ;
6
6
typedef int pthread_once_t ;
7
7
8
- DWORD pthread_self ();
8
+ DWORD pthread_self (void );
9
9
10
10
void pthread_setspecific (pthread_key_t , void * );
11
11
void * pthread_getspecific (pthread_key_t );
You can’t perform that action at this time.
0 commit comments