this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

third attempt at foreign platform compilation

+2 -2
+2 -2
vendor/s7/s7.c
··· 341 341 #endif 342 342 343 343 #ifdef _MSC_VER 344 - #define noreturn __declspec(noreturn) 344 + #define noreturn 345 345 #else 346 346 #define noreturn __attribute__((noreturn)) 347 347 /* this is ok in gcc/g++/clang and tcc; pure attribute is rarely applicable here, and does not seem to be helpful (maybe safe_strlen) */ ··· 371 371 #define MS_WINDOWS 0 372 372 #endif 373 373 374 - #ifndef _WIN32 374 + #if defined(__GNUC__) 375 375 #define Jmp_Buf sigjmp_buf 376 376 #define SetJmp(A, B) sigsetjmp(A, B) 377 377 #define LongJmp(A, B) siglongjmp(A, B)