I am trying to load time.h directly with Cython instead of Python\'s import time but it doesn\'t work.
import time
All I get is an error
Call with w
Pass in NULL to time. Also you can use the builtin libc.time:
from libc.time cimport time,time_t cdef time_t t = time(NULL) print t
which gives
1471622065