mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2025-04-20 06:20:20 +02: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
|