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 __3DS_H__
|
||||
#define __3DS_H__
|
||||
#ifndef I_3DS_H
|
||||
#define I_3DS_H
|
||||
|
||||
#include "cbmd.h"
|
||||
#include "cwav.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __CBMD_H__
|
||||
#define __CBMD_H__
|
||||
#ifndef CBMD_H
|
||||
#define CBMD_H
|
||||
|
||||
#include "../types.h"
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __CWAV_H__
|
||||
#define __CWAV_H__
|
||||
#ifndef CWAV_H
|
||||
#define CWAV_H
|
||||
|
||||
#include "../types.h"
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __LZ11_H__
|
||||
#define __LZ11_H__
|
||||
#ifndef LZ11_H
|
||||
#define LZ11_H
|
||||
|
||||
#include "../types.h"
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __SMDH_H__
|
||||
#define __SMDH_H__
|
||||
#ifndef SMDH_H
|
||||
#define SMDH_H
|
||||
|
||||
#include "../types.h"
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __UTIL_H__
|
||||
#define __UTIL_H__
|
||||
#ifndef UTIL_H
|
||||
#define UTIL_H
|
||||
|
||||
#include "../types.h"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user