Fix header include guards names
Symbols starting with two underscores are reserved, as per the C standard.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
#ifndef __TYPES_H__
|
||||
#define __TYPES_H__
|
||||
#ifndef TYPES_H
|
||||
#define TYPES_H
|
||||
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
|
||||
Reference in New Issue
Block a user