1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/sys/include/timex.h

14 lines
222 B
C
Raw Normal View History

2010-12-01 17:13:37 +01:00
#ifndef __TIMEX_H
#define __TIMEX_H
#include <stdint.h>
typedef struct timex_t {
uint32_t seconds;
uint32_t nanoseconds;
} timex_t;
timex_t timex_add(const timex_t a, const timex_t b);
#endif /* __TIMEX_H */