mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 10:53:16 +01:00
10 lines
180 B
C
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__ */
|