1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

sys/include/hashes.h: Update include guard

This commit is contained in:
Joakim Gebart 2015-05-26 23:11:02 +02:00
parent e2aa1051bc
commit e0098d408a

View File

@ -19,8 +19,8 @@
* @author Christian Mehlis <mehlis@inf.fu-berlin.de>
*/
#ifndef __HASHES_H
#define __HASHES_H
#ifndef HASHES_H_
#define HASHES_H_
#include <stddef.h>
#include <inttypes.h>
@ -164,4 +164,4 @@ uint32_t one_at_a_time_hash(const uint8_t *buf, size_t len);
#endif
/** @} */
#endif /* __HASHES_H */
#endif /* HASHES_H_ */