summaryrefslogtreecommitdiff
path: root/src/os_win16.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-01-30 20:31:25 +0100
committerBram Moolenaar <Bram@vim.org>2016-01-30 20:31:25 +0100
commit055409764ca5f7978d4c399d2c440af0ce971c4f (patch)
treed3f9b0d26c4e371720910e462e2ec918e19d5792 /src/os_win16.c
parentc1ab67674aa0dfdcf9f0e9701ac248e3eb41b19c (diff)
downloadvim-055409764ca5f7978d4c399d2c440af0ce971c4f.zip
patch 7.4.1213
Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
Diffstat (limited to 'src/os_win16.c')
-rw-r--r--src/os_win16.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/os_win16.c b/src/os_win16.c
index efddeeb4d..92367eedf 100644
--- a/src/os_win16.c
+++ b/src/os_win16.c
@@ -156,7 +156,7 @@ mch_setmouse(
* GUI version of mch_init().
*/
void
-mch_init()
+mch_init(void)
{
extern int _fmode;
@@ -206,7 +206,7 @@ mch_check_win(
* return process ID
*/
long
-mch_get_pid()
+mch_get_pid(void)
{
return (long)GetCurrentTask();
}
@@ -379,7 +379,7 @@ mch_delay(
* check for an "interrupt signal": CTRL-break or CTRL-C
*/
void
-mch_breakcheck()
+mch_breakcheck(void)
{
/* never used */
}
@@ -417,7 +417,7 @@ mch_rename(
* Get the default shell for the current hardware platform
*/
char*
-default_shell()
+default_shell(void)
{
char* psz = NULL;