xref: /haiku/headers/compatibility/bsd/stdio.h (revision 56430ad8002b8fd1ac69b590e9cc130de6d9e852)
1 /*
2  * Copyright 2006-2010 Haiku Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _BSD_STDIO_H_
6 #define _BSD_STDIO_H_
7 
8 
9 #include_next <stdio.h>
10 
11 
12 #ifdef _BSD_SOURCE
13 
14 
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18 
19 char *fgetln(FILE *stream, size_t *_length);
20 
21 #ifdef __cplusplus
22 }
23 #endif
24 
25 
26 #endif
27 
28 
29 #endif	/* _BSD_STDIO_H_ */
30