patch 7.4.1225
Problem:    Still a few old style function declarations.
Solution:   Make them new style. (Hirohito Higashi)
diff --git a/runtime/tools/blink.c b/runtime/tools/blink.c
index 1ffd848..5b5b281 100644
--- a/runtime/tools/blink.c
+++ b/runtime/tools/blink.c
@@ -7,6 +7,7 @@
 
 #include <stdio.h>
 
+	int
 main()
 {
 	while (1)
@@ -18,4 +19,5 @@
 		fflush(stdout);
 		usleep(250000);		/* off time */
 	}
+	return 0;
 }