mirror of
https://github.com/peterantypas/maiana.git
synced 2025-05-16 07:20:08 -07:00
20 lines
260 B
C
20 lines
260 B
C
/*
|
|
* printf2.h
|
|
*
|
|
* Created on: Mar 1, 2016
|
|
* Author: peter
|
|
*/
|
|
|
|
#ifndef PRINTF2_H_
|
|
#define PRINTF2_H_
|
|
|
|
#include "config.h"
|
|
|
|
#if ENABLE_VAR_ARGS
|
|
void printf2(const char *format, ...);
|
|
#else
|
|
void printf2(const char *s);
|
|
#endif
|
|
|
|
#endif /* PRINTF2_H_ */
|