Fix include order of files outside of Source/Core

This commit is contained in:
Tillmann Karras
2015-03-01 14:52:09 +01:00
parent 4304648a05
commit b0bde31ac0
10 changed files with 16 additions and 16 deletions

View File

@ -4,10 +4,10 @@
#pragma once
#include <iostream>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <iostream>
#define CON_BLACK 0
#define CON_RED 1

View File

@ -18,8 +18,8 @@
// Stubs to make DSPCore compile as part of DSPSpy.
/*
#include <stdlib.h>
#include <stdio.h>
#include <stdlib.h>
#include <string>

View File

@ -9,17 +9,17 @@
// Use Dolphin's dsptool to generate a new dsp_code.h.
// Originally written by duddie and modified by FIRES. Then further modified by ector.
#include <debug.h>
#include <fat.h>
#include <fcntl.h>
#include <gccore.h>
#include <malloc.h>
#include <network.h>
#include <ogcsys.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <network.h>
#include <ogcsys.h>
#include <time.h>
#include <fat.h>
#include <fcntl.h>
#include <debug.h>
#include <unistd.h>
#include <ogc/color.h>