b05d6f0af0
fix #16259 Change-Id: Ia16bb6e1944b87b25d1a940bbdaaf6e236db1abf Reviewed-on: https://review.haiku-os.org/c/haiku/+/3381 Reviewed-by: Adrien Destugues <pulkomandy@gmail.com>
35 lines
514 B
C
35 lines
514 B
C
/*
|
|
* Copyright 2006-2010 Haiku Inc. All Rights Reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _BSD_STDIO_H_
|
|
#define _BSD_STDIO_H_
|
|
|
|
|
|
#include_next <stdio.h>
|
|
#include <features.h>
|
|
|
|
|
|
#ifdef _DEFAULT_SOURCE
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
char *fgetln(FILE *stream, size_t *_length);
|
|
|
|
int asprintf(char **ret, char const *format, ...) __PRINTFLIKE(2,3);
|
|
int vasprintf(char **ret, char const *format, va_list ap);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif
|
|
|
|
|
|
#endif /* _BSD_STDIO_H_ */
|