1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2026-01-01 01:41:18 +01:00

timex: remove redundant struct timex_t declaration

timex_t is available as a typedef, declaring it as `struct timex_t` in
addition is not necessary.
This commit is contained in:
Oleg Hahm 2014-10-19 20:48:07 +02:00
parent 4b3fa4925a
commit 20dc7b0b00

View File

@ -30,7 +30,7 @@
#define TIMEX_MAX_STR_LEN (18)
typedef struct timex_t {
typedef struct {
uint32_t seconds;
uint32_t microseconds;
} timex_t;