mirror of
https://github.com/vim/vim.git
synced 2025-09-28 04:24:06 -04:00
patch 7.4.1213
Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
This commit is contained in:
@@ -723,10 +723,10 @@ struct typeahead_st {
|
||||
* "msec" == -1 will block until a character is available.
|
||||
*/
|
||||
int
|
||||
RealWaitForChar(fd, msec, check_for_gpm)
|
||||
int fd UNUSED; /* always read from iochan */
|
||||
long msec;
|
||||
int *check_for_gpm UNUSED;
|
||||
RealWaitForChar(
|
||||
int fd UNUSED, /* always read from iochan */
|
||||
long msec,
|
||||
int *check_for_gpm UNUSED)
|
||||
{
|
||||
int status;
|
||||
struct _generic_64 time_curr;
|
||||
|
Reference in New Issue
Block a user