mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
14 lines
222 B
C
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 */
|