summaryrefslogtreecommitdiff
path: root/src/sw.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/sw.h
parent092153af96c9d504d8b76973f6796bcd106801ec (diff)
Don't use reserved identifiers
See C99 7.1.3 Reserved identifiers.
Diffstat (limited to 'src/sw.h')
-rw-r--r--src/sw.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sw.h b/src/sw.h
index 91488c3..d43ea1c 100644
--- a/src/sw.h
+++ b/src/sw.h
@@ -23,12 +23,12 @@
* Stopwatch demo application.
*/
-#ifndef _SW_H
-#define _SW_H
+#ifndef SW_H
+#define SW_H
/*
* Initialize the sw module.
*/
void sw_setup(void);
-#endif /* _SW_H */
+#endif /* SW_H */