blob: 72d355af7390f4d170e9ae15e248842950f0dcdb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#ifndef DEF_STDIO_H
#define DEF_STDIO_H
#include <stdarg.h>
#include <tce/syscall.h>
#ifdef __cplusplus
extern "C" { namespace libc {
#endif
extern FILE term;
void print(const char *s);
void printf(const char *s, ...);
void fprint(FILE f, const char *s);
void fprintf(FILE f, const char *s, ...);
void vfprintf(FILE f, const char *s, va_list arg);
#ifdef __cplusplus
} }
#endif
#endif
|