18 lines
290 B
C
18 lines
290 B
C
/* $Id$ */
|
|
/* Copyright (c) 2018 Pierre Pronchery <khorben@defora.org> */
|
|
/* This file is part of DeforaOS uKernel */
|
|
|
|
|
|
|
|
#ifndef UKERNEL_UNISTD_H
|
|
# define UKERNEL_UNISTD_H
|
|
|
|
# include <stddef.h>
|
|
# include <stdint.h>
|
|
|
|
|
|
/* prototypes */
|
|
void _exit(int status);
|
|
|
|
#endif /* !UKERNEL_UNISTD_H */
|