diff options
Diffstat (limited to 'src/os_w32exe.c')
-rw-r--r-- | src/os_w32exe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/os_w32exe.c b/src/os_w32exe.c index 8c48fb338..76f9332a6 100644 --- a/src/os_w32exe.c +++ b/src/os_w32exe.c @@ -28,14 +28,14 @@ VimMain main #endif __ARGS((int argc, char **argv)); -int (_cdecl *pmain)(int, char **); +static int (_cdecl *pmain)(int, char **); #ifndef PROTO #ifdef FEAT_GUI #ifndef VIMDLL void _cdecl SaveInst(HINSTANCE hInst); #endif -void (_cdecl *pSaveInst)(HINSTANCE); +static void (_cdecl *pSaveInst)(HINSTANCE); #endif /*ARGSUSED*/ |