diff --git a/test.c b/test.c index 426cbe3..64b3e88 100644 --- a/test.c +++ b/test.c @@ -1,7 +1,11 @@ #include +#define UNUSED(x) ((void)(x)) + int main(int argc, char argv[]) { + UNUSED(argc); + UNUSED(argv); printf("Hallo Welt!\n"); return 0; }