summaryrefslogtreecommitdiff
path: root/lib/hash.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 /lib/hash.h
parent092153af96c9d504d8b76973f6796bcd106801ec (diff)
Don't use reserved identifiers
See C99 7.1.3 Reserved identifiers.
Diffstat (limited to 'lib/hash.h')
-rw-r--r--lib/hash.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/hash.h b/lib/hash.h
index 92f3180..d14f331 100644
--- a/lib/hash.h
+++ b/lib/hash.h
@@ -44,8 +44,8 @@
* HASH_ALLBITS macro.
*/
-#ifndef _HASH_H
-#define _HASH_H
+#ifndef HASH_H
+#define HASH_H
#include <assert.h>
#include <stdint.h>
@@ -120,4 +120,4 @@ hash_str(const char *str, unsigned int bits)
return hash & ((1 << bits) - 1);
}
-#endif /* _HASH_H */
+#endif /* HASH_H */