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

View file

@ -1,5 +1,5 @@
#ifndef __3DS_H__ #ifndef I_3DS_H
#define __3DS_H__ #define I_3DS_H
#include "cbmd.h" #include "cbmd.h"
#include "cwav.h" #include "cwav.h"

View file

@ -1,5 +1,5 @@
#ifndef __CBMD_H__ #ifndef CBMD_H
#define __CBMD_H__ #define CBMD_H
#include "../types.h" #include "../types.h"

View file

@ -1,5 +1,5 @@
#ifndef __CWAV_H__ #ifndef CWAV_H
#define __CWAV_H__ #define CWAV_H
#include "../types.h" #include "../types.h"

View file

@ -1,5 +1,5 @@
#ifndef __LZ11_H__ #ifndef LZ11_H
#define __LZ11_H__ #define LZ11_H
#include "../types.h" #include "../types.h"

View file

@ -1,5 +1,5 @@
#ifndef __SMDH_H__ #ifndef SMDH_H
#define __SMDH_H__ #define SMDH_H
#include "../types.h" #include "../types.h"

View file

@ -1,5 +1,5 @@
#ifndef __UTIL_H__ #ifndef UTIL_H
#define __UTIL_H__ #define UTIL_H
#include "../types.h" #include "../types.h"

View file

@ -1,5 +1,5 @@
#ifndef __CMD_H__ #ifndef CMD_H
#define __CMD_H__ #define CMD_H
int cmd_process_command(int argc, char* argv[]); int cmd_process_command(int argc, char* argv[]);

View file

@ -1,5 +1,5 @@
#ifndef __WAV_H__ #ifndef WAV_H
#define __WAV_H__ #define WAV_H
#include <stdio.h> #include <stdio.h>

View file

@ -1,5 +1,5 @@
#ifndef __TYPES_H__ #ifndef TYPES_H
#define __TYPES_H__ #define TYPES_H
#include <stddef.h> #include <stddef.h>
#include <stdint.h> #include <stdint.h>