summaryrefslogtreecommitdiffstats
path: root/tests/ourtail.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ourtail.c')
-rw-r--r--tests/ourtail.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/ourtail.c b/tests/ourtail.c
index f2751c72..4e8a6412 100644
--- a/tests/ourtail.c
+++ b/tests/ourtail.c
@@ -28,7 +28,7 @@
*/
#include <stdio.h>
-int main(int argc, char *argv[])
+int main(int __attribute__((unused)) argc, char __attribute__((unused)) *argv[])
{
int c;
@@ -40,4 +40,6 @@ int main(int argc, char *argv[])
for( ; c != EOF ; c = getchar())
putchar(c);
+
+ return 0;
}