Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 20 lines 352 B view raw
1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Copyright (C) 2019 Arm Limited 4 * Original author: Dave Martin <Dave.Martin@arm.com> 5 */ 6 7#include "system.h" 8 9#include <asm/unistd.h> 10 11void __noreturn exit(int n) 12{ 13 syscall(__NR_exit, n); 14 unreachable(); 15} 16 17ssize_t write(int fd, const void *buf, size_t size) 18{ 19 return syscall(__NR_write, fd, buf, size); 20}