summaryrefslogtreecommitdiffstats
path: root/src/pybind/rados/ctime.pxd
blob: 3e16ce4c20743a1c30454fe5e023c0778ef7ba47 (plain)
1
2
3
4
5
6
7
8
9
10
11
# cython: embedsignature=True

cdef extern from "time.h":
    ctypedef long int time_t
    ctypedef long int suseconds_t


cdef extern from "sys/time.h":
    cdef struct timeval:
        time_t tv_sec
        suseconds_t tv_usec