add timespec declaration

This commit is contained in:
Henning Nielsen Lund 2017-08-05 17:28:39 +02:00
parent c76bf8e20b
commit a471e73adf
1 changed files with 13 additions and 0 deletions

View File

@ -106,6 +106,19 @@ extern size_t strftime(char *s, size_t maxsize, const char *format,
/****************************************************************************/
/* Timespec declaration */
struct timespec
{
time_t tv_secs;
long tv_nsec;
};
#ifndef tv_sec
#define tv_sec tv_secs
#endif /* tv_sec */
/****************************************************************************/
extern char * asctime_r(const struct tm *tm,char * buffer);
extern char * ctime_r(const time_t *tptr,char * buffer);
extern struct tm * gmtime_r(const time_t *t,struct tm * tm_ptr);