xref: /haiku/headers/compatibility/bsd/unistd.h (revision 1acbe440b8dd798953bec31d18ee589aa3f71b73)
1 /*
2  * Copyright 2006, Haiku, Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _BSD_UNISTD_H_
6 #define _BSD_UNISTD_H_
7 
8 
9 #include_next <unistd.h>
10 
11 
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15 
16 char	*getpass(const char *prompt);
17 int		issetugid(void);
18 
19 #ifdef __cplusplus
20 }
21 #endif
22 
23 #endif	/* _BSD_UNISTD_H_ */
24