summaryrefslogtreecommitdiff
path: root/src/timer.h
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2018-02-24 04:56:54 +0100
committerRichard Braun <rbraun@sceen.net>2018-02-24 04:56:54 +0100
commit97f83b42af28a9ecbfd714a8337fd399a32cfb78 (patch)
treec57ba504ece0a3b127de745774c0bd72d85436dc /src/timer.h
parent092153af96c9d504d8b76973f6796bcd106801ec (diff)
Don't use reserved identifiers
See C99 7.1.3 Reserved identifiers.
Diffstat (limited to 'src/timer.h')
-rw-r--r--src/timer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/timer.h b/src/timer.h
index e4a531e..218d28b 100644
--- a/src/timer.h
+++ b/src/timer.h
@@ -23,8 +23,8 @@
* Software timer module.
*/
-#ifndef _TIMER_H
-#define _TIMER_H
+#ifndef TIMER_H
+#define TIMER_H
#include <stdbool.h>
@@ -133,4 +133,4 @@ unsigned long timer_get_time(const struct timer *timer);
*/
void timer_report_tick(void);
-#endif /* _TIMER_H */
+#endif /* TIMER_H */