repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
vfs: check userland buffers before reading them.
[haiku.git]
/
headers
/
compatibility
/
bsd
/
stdio.h
blob
5f80fc087c4b85b6339923ed7f2de23789bae664
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_ */