sccache/tests/test_with_define.c

8 строки
144 B
C
Исходник Обычный вид История

2019-11-08 11:32:10 +03:00
#include <stdio.h>
#if !defined(SCCACHE_TEST_DEFINE)
#error SCCACHE_TEST_DEFINE is not defined
#endif
void foo() { printf("hello world\n"); }