10 lines
183 B
C
10 lines
183 B
C
#include <pthread.h>
|
|
#include <stdio.h>
|
|
|
|
int main() {
|
|
pthread_attr_t attr;
|
|
pthread_attr_init(&attr);
|
|
// use the attribute object...
|
|
pthread_attr_destroy(&attr);
|
|
return 0;
|
|
}
|