aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src/sorted-doc.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib-src/sorted-doc.c')
-rw-r--r--lib-src/sorted-doc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib-src/sorted-doc.c b/lib-src/sorted-doc.c
index 05a3e69cc92..3af3276e811 100644
--- a/lib-src/sorted-doc.c
+++ b/lib-src/sorted-doc.c
@@ -75,7 +75,7 @@ fatal (s1, s2)
75 char *s1, *s2; 75 char *s1, *s2;
76{ 76{
77 error (s1, s2); 77 error (s1, s2);
78 exit (1); 78 exit (EXIT_FAILURE);
79} 79}
80 80
81/* Like malloc but get fatal error if memory is exhausted. */ 81/* Like malloc but get fatal error if memory is exhausted. */
@@ -279,8 +279,10 @@ main ()
279 printf ("@bye\n"); 279 printf ("@bye\n");
280 } 280 }
281 281
282 return 0; 282 return EXIT_SUCCESS;
283} 283}
284 284
285/* arch-tag: ce28f204-1e70-4b34-8210-3d54a5662071 285/* arch-tag: ce28f204-1e70-4b34-8210-3d54a5662071
286 (do not change this comment) */ 286 (do not change this comment) */
287
288/* sorted-doc.c ends here */