mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-22 22:10:10 +01:00
17 lines
177 B
C
17 lines
177 B
C
#if defined(foo)
|
|
failure_1
|
|
#else
|
|
success_1
|
|
#endif
|
|
#define foo
|
|
#if defined ( foo )
|
|
success_2
|
|
#else
|
|
failure_2
|
|
#endif
|
|
#undef foo
|
|
#if defined (foo)
|
|
failure_3
|
|
#else
|
|
success_3
|
|
#endif
|