diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-30 21:29:58 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-30 21:29:58 +0100 |
commit | b638a7be952544ceb03052c25b84224577a6494b (patch) | |
tree | 4a37ca954a03fba25f9e7a81b7f54cf23c1013cb /src/winclip.c | |
parent | 764b23c8fd3369cb05ae9122abf3ca16fec539d7 (diff) | |
download | vim-b638a7be952544ceb03052c25b84224577a6494b.zip |
patch 7.4.1215
Problem: Using old style function declarations.
Solution: Change to new style function declarations. (script by Hirohito
Higashi)
Diffstat (limited to 'src/winclip.c')
-rw-r--r-- | src/winclip.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/winclip.c b/src/winclip.c index f34c7d97f..8ab723f93 100644 --- a/src/winclip.c +++ b/src/winclip.c @@ -779,11 +779,11 @@ utf16_to_enc(short_u *str, int *lenp) * The result is in allocated memory: "out[outlen]". With terminating NUL. */ void -acp_to_enc(str, str_size, out, outlen) - char_u *str; - int str_size; - char_u **out; - int *outlen; +acp_to_enc( + char_u *str, + int str_size, + char_u **out, + int *outlen) { LPWSTR widestr; @@ -804,11 +804,11 @@ acp_to_enc(str, str_size, out, outlen) * The result is in allocated memory: "out[outlen]". With terminating NUL. */ void -enc_to_acp(str, str_size, out, outlen) - char_u *str; - int str_size; - char_u **out; - int *outlen; +enc_to_acp( + char_u *str, + int str_size, + char_u **out, + int *outlen) { LPWSTR widestr; |