Xenomai API  2.6.3
stdio.h
1 #ifndef __KERNEL__
2 
3 #pragma GCC system_header
4 
5 #include_next <stdio.h>
6 
7 #ifndef _XENO_POSIX_STDIO_H
8 #define _XENO_POSIX_STDIO_H
9 
10 #include <stddef.h>
11 #include <stdarg.h>
12 #include <xeno_config.h>
13 
14 #ifdef __cplusplus
15 extern "C" {
16 #endif /* __cplusplus */
17 
18 int __real_vfprintf(FILE *stream, const char *fmt, va_list args);
19 
20 #ifdef CONFIG_XENO_FORTIFY
21 int __real___vfprintf_chk(FILE *stream, int level, const char *fmt, va_list ap);
22 #endif
23 
24 int __real_vprintf(const char *fmt, va_list args);
25 
26 int __real_fprintf(FILE *stream, const char *fmt, ...);
27 
28 int __real_printf(const char *fmt, ...);
29 
30 int __real_puts(const char *s);
31 
32 int __real_fputs(const char *s, FILE *stream);
33 
34 int __real_fputc(int c, FILE *stream);
35 
36 int __real_putchar(int c);
37 
38 size_t __real_fwrite(const void *ptr, size_t sz, size_t nmemb, FILE *stream);
39 
40 #ifdef __cplusplus
41 }
42 #endif /* __cplusplus */
43 
44 #endif /* _XENO_POSIX_STDIO_H */
45 
46 #endif /* !__KERNEL__ */