1 /*
2  * Copyright (c) 2020 Raspberry Pi (Trading) Ltd.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef _PICO_LLVM_LIBC_UNISTD_H
8 #define _PICO_LLVM_LIBC_UNISTD_H
9 
10 #include <__llvm-libc-common.h>
11 
12 typedef int pid_t;
13 
14 __BEGIN_C_DECLS
15 
16 _Noreturn void _exit(int) __NOEXCEPT;
17 
18 __END_C_DECLS
19 
20 #endif // _PICO_LLVM_LIBC_UNISTD_H
21