mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-05-15 22:12:06 +00:00
Cleaned up with scripts/clean-header-guards.pl. Backports commit 2a6a4076e117113ebec97b1821071afccfdfbc96 from qemu
12 lines
155 B
C
12 lines
155 B
C
#ifndef QEMU_THREAD_POSIX_H
|
|
#define QEMU_THREAD_POSIX_H
|
|
|
|
#include <pthread.h>
|
|
#include <semaphore.h>
|
|
|
|
struct QemuThread {
|
|
pthread_t thread;
|
|
};
|
|
|
|
#endif
|