aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src/hexl.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib-src/hexl.c')
-rw-r--r--lib-src/hexl.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib-src/hexl.c b/lib-src/hexl.c
index 0cfb88445b3..5ca7c2a5b8a 100644
--- a/lib-src/hexl.c
+++ b/lib-src/hexl.c
@@ -270,15 +270,17 @@ main (argc, argv)
270 fclose (fp); 270 fclose (fp);
271 271
272 } while (*argv != NULL); 272 } while (*argv != NULL);
273 return 0; 273 return EXIT_SUCCESS;
274} 274}
275 275
276void 276void
277usage () 277usage ()
278{ 278{
279 fprintf (stderr, "usage: %s [-de] [-iso]\n", progname); 279 fprintf (stderr, "usage: %s [-de] [-iso]\n", progname);
280 exit (1); 280 exit (EXIT_FAILURE);
281} 281}
282 282
283/* arch-tag: 20e04fb7-926e-4e48-be86-64fe869ecdaa 283/* arch-tag: 20e04fb7-926e-4e48-be86-64fe869ecdaa
284 (do not change this comment) */ 284 (do not change this comment) */
285
286/* hexl.c ends here */