libluna+kernel: Move luna/Syscall.h to the kernel API directory
Some checks failed
continuous-integration/drone/push Build is failing

A kernel-specific header has nothing to do in libluna.
This commit is contained in:
apio 2023-08-23 14:35:21 +02:00
parent b8ae61b7c7
commit 3f1e6fc2ff
Signed by: apio
GPG Key ID: B8A7D06E42258954
4 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
#include <luna/Syscall.h>
#include <moon/Syscall.h>
#include <os/ArgumentParser.h>
#include <stdio.h>
#include <stdlib.h>

View File

@ -1,7 +1,7 @@
#pragma once
#include "api/Syscall.h"
#include "arch/CPU.h"
#include <luna/Result.h>
#include <luna/Syscall.h>
typedef u64 SyscallArgs[6];

View File

@ -3,8 +3,8 @@
#ifndef _SYS_SYSCALL_H
#define _SYS_SYSCALL_H
/* This header just forwards to luna/Syscall.h, which is used in the kernel as well. */
#include <luna/Syscall.h>
/* This header just forwards to the kernel API header Syscall.h. */
#include <moon/Syscall.h>
#undef enumerate_syscalls
#endif