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 71f11723be
commit fdb409573f
9 changed files with 18 additions and 18 deletions

View File

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