Fix header include guards names

Symbols starting with two underscores are reserved, as per the C
standard.
This commit is contained in:
Dorian Wouters
2016-01-27 16:42:15 +01:00
parent 3876965eb1
commit 21ee45095b
9 changed files with 18 additions and 18 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
#ifndef __TYPES_H__
#define __TYPES_H__
#ifndef TYPES_H
#define TYPES_H
#include <stddef.h>
#include <stdint.h>