Fix missing `void`
authorZaur Shibzukhov <szport@gmail.com>
Sun, 3 Mar 2013 13:45:43 +0000 (16:45 +0300)
committerZaur Shibzukhov <szport@gmail.com>
Sun, 3 Mar 2013 13:45:43 +0000 (16:45 +0300)
Cython/Includes/cpython/datetime.pxd

index 9ec1ee8..3c6f8a7 100644 (file)
@@ -101,7 +101,7 @@ cdef extern from "datetime.h":
 
 # Datetime C API initialization function.
 # You have to call it before any usage of DateTime CAPI functions.
-cdef inline import_datetime():
+cdef inline void import_datetime():
     PyDateTime_IMPORT
 
 # Create date object using DateTime CAPI factory function.