summaryrefslogtreecommitdiffstats
path: root/runtime/tools
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-01-31 17:30:51 +0100
committerBram Moolenaar <Bram@vim.org>2016-01-31 17:30:51 +0100
commitd14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb (patch)
treef33b2f999a51f5ecd5b42c01b0d837ab8e660b44 /runtime/tools
parentbbb3339dbfa2067fab616698739097df06aa5e6c (diff)
patch 7.4.1225v7.4.1225
Problem: Still a few old style function declarations. Solution: Make them new style. (Hirohito Higashi)
Diffstat (limited to 'runtime/tools')
-rw-r--r--runtime/tools/blink.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/tools/blink.c b/runtime/tools/blink.c
index 1ffd848edc..5b5b281723 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 @@ main()
fflush(stdout);
usleep(250000); /* off time */
}
+ return 0;
}