]> granicus.if.org Git - flex/commitdiff
Changed end of main() in libmain to exit(0)
authorWill Estes <westes575@gmail.com>
Sat, 12 Dec 2015 01:25:50 +0000 (20:25 -0500)
committerWill Estes <westes575@gmail.com>
Sat, 12 Dec 2015 01:25:50 +0000 (20:25 -0500)
src/libmain.c

index f400fc3b4b6ef8415378de1461151245ef743297..340a2a131b17f698d083b9e45151d64c3ca5aa60 100644 (file)
@@ -30,5 +30,5 @@ int     main (int argc, char *argv[])
 
        while (yylex () != 0) ;
 
-       return 0;
+       exit(0);
 }