mirror of
https://gitlab.freedesktop.org/emersion/libliftoff.git
synced 2024-11-16 19:47:55 +01:00
32683879e7
Aligns our style with Linux' and Weston's.
12 lines
165 B
C
12 lines
165 B
C
#include <stdio.h>
|
|
|
|
int
|
|
main(int argc, char *argv[])
|
|
{
|
|
#ifdef NDEBUG
|
|
fprintf(stderr, "NDEBUG is defined, cannot run tests\n");
|
|
return 1;
|
|
#else
|
|
return 0;
|
|
#endif
|
|
}
|