mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2024-10-01 01:36:01 -04:00
11 lines
165 B
C
11 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
|