blob: 72d355af7390f4d170e9ae15e248842950f0dcdb (
plain) (
tree)
|
|
#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
|