summaryrefslogtreecommitdiff
path: root/src/libc/stdio.h
blob: 24632f644e578b49fa3f76ca078049a460f797af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef STDIO_H
#define STDIO_H

#include <stdarg.h>

#include "stddef.h"

#ifdef OS_ABAOS
#include "console.h"
#endif

#define EOF (-1)

int puts( const char *s );
int printf( const char *format, ... );
int vprintf( const char *format, va_list args );

#ifdef OS_ABAOS
void __stdio_set_console( console_t *console );
#endif

#endif //STDIO_H