From fb97f28cc23c20721af3b122a8b9c510db0e14b2 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 9 Jul 2013 17:42:46 +0200 Subject: updated for version 7.4a.009 Problem: Compiler warnings for function prototypes. Solution: Add "void". Move list_features() prototype. (Ken Takata) --- src/if_py_both.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/if_py_both.h') diff --git a/src/if_py_both.h b/src/if_py_both.h index a9fe505a8..48b7be7be 100644 --- a/src/if_py_both.h +++ b/src/if_py_both.h @@ -2100,7 +2100,7 @@ ListNew(PyTypeObject *subtype, list_T *list) } static list_T * -py_list_alloc() +py_list_alloc(void) { list_T *ret; @@ -5857,7 +5857,7 @@ init_structs(void) return -1; static int -init_types() +init_types(void) { PYTYPE_READY(IterType); PYTYPE_READY(BufferType); -- cgit v1.2.1