]> code.delx.au - gnu-emacs/blobdiff - lib-src/profile.c
*** empty log message ***
[gnu-emacs] / lib-src / profile.c
index e2fa4793b63792c7dae20acc82569ef11e3fb948..8d924532b879f20c951c6c5f6330ce8dce99e010 100644 (file)
@@ -48,14 +48,14 @@ reset_watch ()
 }
 
 /* This call returns the time since the last reset_watch call.  The time
-   is returned as a string with the format  <seconds>.<micro-seconds> 
+   is returned as a string with the format  <seconds>.<micro-seconds>
    If reset_watch was not called yet, exit.  */
 
 char *
 get_time ()
 {
   if (watch_not_started)
-    exit (1);  /* call reset_watch first ! */
+    exit (EXIT_FAILURE);  /* call reset_watch first ! */
   EMACS_GET_TIME (TV2);
   EMACS_SUB_TIME (TV2, TV2, TV1);
   sprintf (time_string, "%lu.%06lu", (unsigned long)EMACS_SECS (TV2), (unsigned long)EMACS_USECS (TV2));
@@ -94,11 +94,16 @@ main ()
          puts (get_time ());
          break;
        case 'q':
-         exit (0);
+         exit (EXIT_SUCCESS);
        }
       /* Anything remaining on the line is ignored.  */
       while (c != '\n' && c != EOF)
        c = getchar ();
     }
-  exit (1);
+  exit (EXIT_FAILURE);
 }
+
+/* arch-tag: 8db68f7e-2322-4944-a315-dba349bdbf39
+   (do not change this comment) */
+
+/* profile.c ends here */