mirror of
https://github.com/girlbossceo/hardened_malloc.git
synced 2025-06-07 19:04:25 +00:00
10 lines
165 B
C
10 lines
165 B
C
#ifndef TEST_UTIL_H
|
|
#define TEST_UTIL_H
|
|
|
|
#ifdef __clang__
|
|
#define OPTNONE __attribute__((optnone))
|
|
#else
|
|
#define OPTNONE __attribute__((optimize(0)))
|
|
#endif
|
|
|
|
#endif
|