15 lines
167 B
C
15 lines
167 B
C
#ifndef _PRINTF_H
|
|
#define _PRINTF_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int printf(const char *fmt, ...);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* end of printf*/
|