forked from aniani/vim
patch 9.0.1930: compiler warnings with clang-17
Problem: compiler warnings with clang-17 Solution: Fix function prototypes and function pointer fix: clang compilation warnings with -Wstrict-prototypes Change fixes this kind of compilation warnings with clang: ``` proto/if_python3.pro:13:20: warning: a function declaration without a prototype is deprecated in all versions of C [-Wstrict-prototypes] 13 | int python3_version(); | ^ | void ``` closes: #13166 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: Dominique Pellé <dominique.pelle@tomtom.com>
This commit is contained in:
committed by
Christian Brabandt
parent
99c3849a92
commit
4927bc7d27
@@ -1000,7 +1000,7 @@ has_profiling(
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
prof_clear_cache()
|
prof_clear_cache(void)
|
||||||
{
|
{
|
||||||
if (!prof_cache_initialized)
|
if (!prof_cache_initialized)
|
||||||
{
|
{
|
||||||
|
@@ -2070,7 +2070,7 @@ set_ref_in_python3(int copyID)
|
|||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
python3_version()
|
python3_version(void)
|
||||||
{
|
{
|
||||||
#ifdef USE_LIMITED_API
|
#ifdef USE_LIMITED_API
|
||||||
return Py_LIMITED_API;
|
return Py_LIMITED_API;
|
||||||
|
@@ -1858,7 +1858,7 @@ ex_xrestore(exarg_T *eap)
|
|||||||
static int
|
static int
|
||||||
test_x11_window(Display *dpy)
|
test_x11_window(Display *dpy)
|
||||||
{
|
{
|
||||||
int (*old_handler)();
|
int (*old_handler)(Display*, XErrorEvent*);
|
||||||
XTextProperty text_prop;
|
XTextProperty text_prop;
|
||||||
|
|
||||||
old_handler = XSetErrorHandler(x_error_check);
|
old_handler = XSetErrorHandler(x_error_check);
|
||||||
@@ -7781,9 +7781,9 @@ setup_term_clip(void)
|
|||||||
open_app_context();
|
open_app_context();
|
||||||
if (app_context != NULL && xterm_Shell == (Widget)0)
|
if (app_context != NULL && xterm_Shell == (Widget)0)
|
||||||
{
|
{
|
||||||
int (*oldhandler)();
|
int (*oldhandler)(Display*, XErrorEvent*);
|
||||||
# if defined(USING_SETJMP)
|
# if defined(USING_SETJMP)
|
||||||
int (*oldIOhandler)();
|
int (*oldIOhandler)(Display*);
|
||||||
# endif
|
# endif
|
||||||
# ifdef ELAPSED_FUNC
|
# ifdef ELAPSED_FUNC
|
||||||
elapsed_T start_tv;
|
elapsed_T start_tv;
|
||||||
|
@@ -10,5 +10,5 @@ void python3_window_free(win_T *win);
|
|||||||
void python3_tabpage_free(tabpage_T *tab);
|
void python3_tabpage_free(tabpage_T *tab);
|
||||||
void do_py3eval(char_u *str, typval_T *rettv);
|
void do_py3eval(char_u *str, typval_T *rettv);
|
||||||
int set_ref_in_python3(int copyID);
|
int set_ref_in_python3(int copyID);
|
||||||
int python3_version();
|
int python3_version(void);
|
||||||
/* vim: set ft=c : */
|
/* vim: set ft=c : */
|
||||||
|
@@ -699,6 +699,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 */
|
||||||
|
/**/
|
||||||
|
1930,
|
||||||
/**/
|
/**/
|
||||||
1929,
|
1929,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user