summaryrefslogblamecommitdiff
path: root/src/user/lib/libc/include/stdio.h
blob: 72d355af7390f4d170e9ae15e248842950f0dcdb (plain) (tree)
1
2
3
4
5
6
7
8
9
10


                   
                   
                        
 



                             

                 

                                
 


                                                  
 



                  

      
#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