Undo the use of #include <...> because it caused some errors.

This commit is contained in:
Kees van Reeuwijk
2010-02-12 14:43:18 +00:00
parent b5e7af96c9
commit df60646f98
20 changed files with 30 additions and 34 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ d = ..
# programs, flags, etc.
MAKE = exec make
CC = exec cc
CFLAGS = -I.. -I../.. -I$i $(CPROFILE)
CFLAGS = -I$i $(CPROFILE)
LDFLAGS = -i
LIBS = -lsys -ltimers
+4 -4
View File
@@ -6,7 +6,7 @@
*
*/
#include <drivers.h>
#include "../drivers.h"
#include <stdlib.h>
#include <stdio.h>
@@ -26,9 +26,9 @@
#include <sys/types.h>
#include <assert.h>
#include <unistd.h>
#include <kernel/const.h>
#include <kernel/config.h>
#include <kernel/type.h>
#include "../../kernel/const.h"
#include "../../kernel/config.h"
#include "../../kernel/type.h"
#define debug 1
#define printW() ((void)0)