Mam wzorem program, który nie trafia do kompilacji z -std = c99GCC kompilacji nie powiedzie się z Pthread i opcji std = c99
każda pomoc mile widziane
#include <pthread.h>
int main(void) {
pthread_rwlock_t myLock;
return 0;
}
output of the two compiles:
gcc pthread_test.c
[[email protected] src]$ gcc pthread_test.c
[[email protected] src]$
gcc -std=c99 pthread_test.c[[email protected] src]$ gcc -std=c99 pthread_test.c
pthread_test.c: In function ‘main’:
pthread_test.c:5:2: error: unknown type name ‘pthread_rwlock_t’
[[email protected] src]$
Co z '-std = gnu99'? –