0.9.5.18:
authorJuho Snellman <jsnell@iki.fi>
Mon, 3 Oct 2005 09:46:39 +0000 (09:46 +0000)
committerJuho Snellman <jsnell@iki.fi>
Mon, 3 Oct 2005 09:46:39 +0000 (09:46 +0000)
Minor cleanups to tools-for-build/where-is-mcontext:

        * Include stdlib.h to get rid of warning (thanks to Rex Dieter)
        * Explicitly return 0 on success (thanks to Trent Buck)

tools-for-build/where-is-mcontext.c
version.lisp-expr

index edcd646..6c579b1 100644 (file)
@@ -20,6 +20,7 @@
 
 #include <stdio.h>
 #include <stddef.h>
+#include <stdlib.h>
 #include <sys/ucontext.h>
 
 int main (int argc, char *argv[]) {
@@ -45,5 +46,6 @@ int main (int argc, char *argv[]) {
     }
     printf("\
 #endif /* PPC_LINUX_MCONTEXT_H */\n");
+    exit(0);
 }
 
index d521fc7..8c478a6 100644 (file)
@@ -17,4 +17,4 @@
 ;;; checkins which aren't released. (And occasionally for internal
 ;;; versions, especially for internal versions off the main CVS
 ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.9.5.17"
+"0.9.5.18"