From d21247c98b05fa58b0a1f98324180c6a5e240ba1 Mon Sep 17 00:00:00 2001 From: "K. Lange" Date: Mon, 10 Dec 2018 19:05:42 +0900 Subject: [PATCH] include: cleanup --- base/usr/include/_xlog.h | 4 ++-- base/usr/include/pthread.h | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/base/usr/include/_xlog.h b/base/usr/include/_xlog.h index 9dc1c825..71c3ee59 100644 --- a/base/usr/include/_xlog.h +++ b/base/usr/include/_xlog.h @@ -1,6 +1,6 @@ #include #include -#include +#include #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); diff --git a/base/usr/include/pthread.h b/base/usr/include/pthread.h index 02aa83cf..48a9fd93 100644 --- a/base/usr/include/pthread.h +++ b/base/usr/include/pthread.h @@ -2,7 +2,6 @@ #include <_cheader.h> #include -#include _Begin_C_Header