mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
updated for version 7.3.303
Problem: Compilation error. Solution: Correct return type from int to pid_t. (Danek Duvall)
This commit is contained in:
@@ -159,7 +159,7 @@ typedef union wait waitstatus;
|
|||||||
#else
|
#else
|
||||||
typedef int waitstatus;
|
typedef int waitstatus;
|
||||||
#endif
|
#endif
|
||||||
static int wait4pid __ARGS((pid_t, waitstatus *));
|
static pid_t wait4pid __ARGS((pid_t, waitstatus *));
|
||||||
|
|
||||||
static int WaitForChar __ARGS((long));
|
static int WaitForChar __ARGS((long));
|
||||||
#if defined(__BEOS__)
|
#if defined(__BEOS__)
|
||||||
|
@@ -709,6 +709,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
303,
|
||||||
/**/
|
/**/
|
||||||
302,
|
302,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user