From ec835973b720cb249bc6a803ec4e0a44b1ab3dd9 Mon Sep 17 00:00:00 2001 From: Jonathan Lamothe Date: Mon, 2 Sep 2013 07:57:39 -0400 Subject: [PATCH] suppress compiler warnings --- undpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/undpu.c b/undpu.c index 79be834..3eed3c2 100755 --- a/undpu.c +++ b/undpu.c @@ -4,7 +4,6 @@ #include int main (int argc, char **argv){ - char name[FILENAME_MAX]; FILE *bob, *joe; int factor, thing; char output[FILENAME_MAX]; @@ -43,4 +42,5 @@ int main (int argc, char **argv){ thing = fgetc(bob); } } + return 0; }