/* SPDX-License-Identifier: GPL-2.0 */1/*2* Copyright (C) 2000 Jeff Dike ([email protected])3*/45#ifndef __KERN_H__6#define __KERN_H__78/* These are all user-mode things which are convenient to call directly9* from kernel code and for which writing a wrapper is too much of a pain.10* The regular include files can't be included because this file is included11* only into kernel code, and user-space includes conflict with kernel12* includes.13*/1415extern int printf(const char *fmt, ...);16extern void *sbrk(int increment);17extern int pause(void);18extern void exit(int);1920#endif21222324