commit 283bf2e17c0ffb78933cc52c502803609dfadda7
parent 2a5a4fdc79effef6289fa10af2df903f2a88b7b2
Author: Quentin Rameau <quinq@fifth.space>
Date:   Wed, 25 May 2016 16:35:02 +0200
Move arg.h to inc/
Diffstat:
3 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/cc1/main.c b/cc1/main.c
@@ -5,7 +5,7 @@
 #include <string.h>
 #include <errno.h>
 
-#include "../arg.h"
+#include "../inc/arg.h"
 #include "../inc/cc.h"
 #include "arch.h"
 #include "cc1.h"
diff --git a/driver/posix/scc.c b/driver/posix/scc.c
@@ -11,7 +11,7 @@
 #include <stdlib.h>
 #include <string.h>
 
-#include "../../arg.h"
+#include "../../inc/arg.h"
 #include "../../inc/cc.h"
 
 char *argv0;
diff --git a/arg.h b/inc/arg.h