From f5bb5edcd3311f151b17a1b9e4cfe864a76fc565 Mon Sep 17 00:00:00 2001 From: fef Date: Wed, 14 Jul 2021 16:43:09 +0200 Subject: [PATCH] get rid of obsolete syscall header neo is built on top of libc now --- include/neo/_unistd.h | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 include/neo/_unistd.h diff --git a/include/neo/_unistd.h b/include/neo/_unistd.h deleted file mode 100644 index f8a106c..0000000 --- a/include/neo/_unistd.h +++ /dev/null @@ -1,24 +0,0 @@ -/** See the end of this file for copyright and license terms. */ - -#pragma once - -#include "neo.h" - -long _neo_syscall(long number, ...); - -isize _neo_sys_write(int fd, const void *buf, usize count); -__attribute__((__noreturn__)) -void _neo_sys_exit(int status); - -/* - * This file is part of libneo. - * Copyright (c) 2021 Fefie . - * - * libneo is non-violent software: you may only use, redistribute, - * and/or modify it under the terms of the CNPLv6+ as found in - * the LICENSE file in the source code root directory or at - * . - * - * libneo comes with ABSOLUTELY NO WARRANTY, to the extent - * permitted by applicable law. See the CNPLv6+ for details. - */