Skip to content
Snippets Groups Projects
timespec.h 125 B
Newer Older
Dan Robertson's avatar
Dan Robertson committed
#ifndef _BITS_TIMESPEC_H
#define _BITS_TIMESPEC_H

Paul Sajna's avatar
Paul Sajna committed
typedef struct {
    time_t tv_sec;
    long tv_nsec;
} timespec;
Dan Robertson's avatar
Dan Robertson committed

#endif