shithub: rgbds

Download patch

ref: c65d58c5890c70ffa15054de4bef9c32d005a801
parent: 1f9fd0f060801ac351007f4ce8064420a63dfaea
author: stag019 <[email protected]>
date: Mon Dec 23 09:37:56 EST 2013

Move local includes below system includes.

--- a/src/asm/lexer.c
+++ b/src/asm/lexer.c
@@ -1,3 +1,8 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <ctype.h>
+
 #include "asm/asm.h"
 #include "asm/lexer.h"
 #include "asm/types.h"
@@ -6,11 +11,6 @@
 #include "asm/fstack.h"
 
 #include "asmy.h"
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <ctype.h>
 
 struct sLexString {
 	char *tzName;