1
0
mirror of https://github.com/peterantypas/maiana.git synced 2025-05-15 23:10:11 -07:00
2021-11-14 19:24:21 -08:00

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_ */