| 1 | #include <structures/locked_list.h> |
|---|---|
| 2 | #include <time/clock.h> |
| 3 | #include <time/clock_evdev.h> |
| 4 | #include <time/time.h> |
| 5 | |
| 6 | struct clock_globals { |
| 7 | struct locked_list clocks; |
| 8 | struct locked_list clock_evdevs; |
| 9 | struct locked_list clock_evdev_groups; |
| 10 | }; |
| 11 |