mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 18:09:48 +00:00
16 lines
255 B
C++
16 lines
255 B
C++
#include <string>
|
|
#include <pthread.h>
|
|
|
|
void* function(void *ptr)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
pthread_t thread;
|
|
int ret = pthread_create(&thread, NULL, function, (void*)0);
|
|
pthread_join(thread, NULL);
|
|
return 0;
|
|
}
|