Files
codezero/containers/posix/libc/include/printf.h
Bahadir Balban a41caeebd2 Created libc under containers/posix which now all tasks use to build.
There is a problem in the new libc that test0 now misbehaves. Going to be fixed.
2009-08-27 12:00:04 +03:00

10 lines
180 B
C

#ifndef __PRINTF_H__
#define __PRINTF_H__
#include <stdarg.h>
#include <stdio.h>
int printf(char *format, ...) __attribute__((format (printf, 1, 2)));
#endif /* __PRINTF_H__ */