summaryrefslogtreecommitdiff
path: root/sys/include/printf.h
blob: fd9a092ddd2ece289ff221ea5d186e6f31bad04c (plain)
1
2
3
4
5
6
7
8
#ifndef _KPRINTF_H
#define _KPRINTF_H

int puts(const char *); 
void printf_init(void);
void printf(const char *, ...);

#endif /* _KPRINTF_H */