aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/at91/image/dfboot/src/stdio.h
blob: e4e35ecf4de3eebbce881d3b67066fc61c41ade0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <stdarg.h>
#include <stdbool.h>

#ifndef NULL
#define NULL ((void *)0)
#endif

void at91_init_uarts(void);
int puts(const char *str);
int putc(int c);
int putchar(int c);
int getc();

int strlen(const char *str);

int hvfprintf(const char *fmt, va_list ap);

int printf(const char *fmt, ...);