summaryrefslogtreecommitdiff
path: root/src/port/pthread-win32.h
diff options
context:
space:
mode:
authorMagnus Hagander2007-04-18 08:32:40 +0000
committerMagnus Hagander2007-04-18 08:32:40 +0000
commit5574c9f3a5d4ec8432cee5a10949b82929308eed (patch)
tree7978985dc1af1d7d413856bafbc3b5acf45b424c /src/port/pthread-win32.h
parentc2284489106f6d2d0a9a2d2b84fe0baadab97ed4 (diff)
Silence mingw compiler warning
Diffstat (limited to 'src/port/pthread-win32.h')
-rw-r--r--src/port/pthread-win32.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/port/pthread-win32.h b/src/port/pthread-win32.h
index dfcdd328ec0..2e009af1ee9 100644
--- a/src/port/pthread-win32.h
+++ b/src/port/pthread-win32.h
@@ -5,7 +5,7 @@ typedef ULONG pthread_key_t;
typedef HANDLE pthread_mutex_t;
typedef int pthread_once_t;
-DWORD pthread_self();
+DWORD pthread_self(void);
void pthread_setspecific(pthread_key_t, void *);
void *pthread_getspecific(pthread_key_t);