mirror of
https://github.com/drasko/codezero.git
synced 2026-03-20 19:11:52 +01:00
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.
This commit is contained in:
9
containers/posix/libc/include/printf.h
Normal file
9
containers/posix/libc/include/printf.h
Normal file
@@ -0,0 +1,9 @@
|
||||
|
||||
#ifndef __PRINTF_H__
|
||||
#define __PRINTF_H__
|
||||
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
int printf(char *format, ...) __attribute__((format (printf, 1, 2)));
|
||||
|
||||
#endif /* __PRINTF_H__ */
|
||||
Reference in New Issue
Block a user