include: cleanup

This commit is contained in:
K. Lange 2018-12-10 19:05:42 +09:00
parent 54e9044161
commit d21247c98b
2 changed files with 2 additions and 3 deletions

View File

@ -1,6 +1,6 @@
#include <stdint.h>
#include <stddef.h>
#include <syscall.h>
#include <sys/sysfunc.h>
#define _XLOG(_msg) do { \
char * msg[] = { \
@ -9,6 +9,6 @@
(char*)2, \
_msg, \
}; \
syscall_system_function(12, msg); \
sysfunc(TOARU_SYS_FUNC_DEBUGPRINT, msg); \
} while (0);

View File

@ -2,7 +2,6 @@
#include <_cheader.h>
#include <stdint.h>
#include <syscall.h>
_Begin_C_Header