ar7: Remove conditional compilation
[qemu/ar7.git] / hosts / w32 / include / signal.h
blob4552840e2be9e101f6af2cf3194fa62ddd848a93
1 /*
2 * QEMU w32 support
4 * Copyright (C) 2011 Stefan Weil
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
9 */
11 #ifndef WIN32_SIGNAL_H
12 #define WIN32_SIGNAL_H
14 #include_next <signal.h>
16 #if !defined(WIN64) && !defined(pthread_sigmask)
18 int pthread_sigmask(int how, const sigset_t *set, sigset_t *oldset);
19 int sigfillset(sigset_t *set);
21 #endif /* W64 */
23 #endif /* WIN32_SIGNAL_H */