Files
hardened_malloc/test/test_util.h
2020-06-17 20:08:46 -04:00

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