1
0
mirror of https://github.com/cc65/cc65.git synced 2026-04-24 14:17:23 +00:00

Harmonized the style of including headers from headers.

We surely don't care about some file I/O on host machines in 2018 ;-)
This commit is contained in:
Oliver Schmidt
2018-02-02 12:28:22 +01:00
parent f15cd3e468
commit 935f68f686
18 changed files with 22 additions and 74 deletions
+2 -9
View File
@@ -38,12 +38,8 @@
#ifndef _STDDEF_H
# include <stddef.h>
#endif
#ifndef _STDARG_H
# include <stdarg.h>
#endif
#include <stddef.h>
#include <stdarg.h>
@@ -147,6 +143,3 @@ void __fastcall__ _poserror (const char* msg); /* cc65 */
/* End of stdio.h */
#endif