1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-24 14:03:55 +01:00
RIOT/sys/include/timex.h

14 lines
222 B
C

#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 */