}
static dict_T *
-py_dict_alloc()
+py_dict_alloc(void)
{
dict_T *r;
}
static PyInt
-DictionaryAssItem(DictionaryObject *self, PyObject *keyObject, PyObject *valObject)
+DictionaryAssItem(
+ DictionaryObject *self, PyObject *keyObject, PyObject *valObject)
{
char_u *key;
typval_T tv;
}
static int
-set_option_value_err(key, numval, stringval, opt_flags)
- char_u *key;
- int numval;
- char_u *stringval;
- int opt_flags;
+set_option_value_err(char_u *key, int numval, char_u *stringval, int opt_flags)
{
char_u *errmsg;
}
static int
-set_option_value_for(key, numval, stringval, opt_flags, opt_type, from)
- char_u *key;
- int numval;
- char_u *stringval;
- int opt_flags;
- int opt_type;
- void *from;
+set_option_value_for(
+ char_u *key,
+ int numval,
+ char_u *stringval,
+ int opt_flags,
+ int opt_type,
+ void *from)
{
win_T *save_curwin = NULL;
tabpage_T *save_curtab = NULL;
}
static int
-init_sys_path()
+init_sys_path(void)
{
PyObject *path;
PyObject *path_hook;