std.cfg: Attempt to fix failing CI

This commit is contained in:
orbitcowboy 2022-05-10 23:09:10 +02:00
parent 72ba85a2fc
commit e9641e6de5
2 changed files with 10 additions and 1 deletions

View File

@ -23,7 +23,9 @@
#include <time.h> #include <time.h>
#include <stdbool.h> #include <stdbool.h>
#include <stdint.h> #include <stdint.h>
#ifndef __STDC_NO_THREADS__
#include <threads.h> #include <threads.h>
#endif
#include <inttypes.h> #include <inttypes.h>
#include <float.h> #include <float.h>
@ -4364,6 +4366,7 @@ void nullPointer_system(char *c)
(void)system(c); (void)system(c);
} }
#ifndef __STDC_NO_THREADS__
int nullPointer_mtx_timedlock( mtx_t *restrict mutex, const struct timespec *restrict time_point ) int nullPointer_mtx_timedlock( mtx_t *restrict mutex, const struct timespec *restrict time_point )
{ {
// cppcheck-suppress nullPointer // cppcheck-suppress nullPointer
@ -4372,6 +4375,7 @@ int nullPointer_mtx_timedlock( mtx_t *restrict mutex, const struct timespec *res
(void) mtx_timedlock(mutex, NULL); (void) mtx_timedlock(mutex, NULL);
return mtx_timedlock(mutex, time_point); return mtx_timedlock(mutex, time_point);
} }
#endif
void uninitvar_zonetime(void) void uninitvar_zonetime(void)
{ {

View File

@ -26,7 +26,9 @@
#include <cwchar> #include <cwchar>
#include <fstream> #include <fstream>
#include <functional> #include <functional>
#include <threads.h> #ifndef __STDC_NO_THREADS__
#include <threads.h>
#endif
#include <iomanip> #include <iomanip>
#include <ios> #include <ios>
#include <iostream> #include <iostream>
@ -3661,6 +3663,8 @@ void uninitvar_system(void)
(void)std::system(c); (void)std::system(c);
} }
#ifndef __STDC_NO_THREADS__
void nullPointer_mtx_destroy( mtx_t *mutex ) void nullPointer_mtx_destroy( mtx_t *mutex )
{ {
// cppcheck-suppress nullPointer // cppcheck-suppress nullPointer
@ -3690,6 +3694,7 @@ int nullPointer_mtx_timedlock( mtx_t *mutex, const struct timespec *time_point )
(void) mtx_timedlock(mutex, nullptr); (void) mtx_timedlock(mutex, nullptr);
return mtx_timedlock(mutex, time_point); return mtx_timedlock(mutex, time_point);
} }
#endif
void nullPointer_system(char *c) void nullPointer_system(char *c)
{ {