mirror of
https://github.com/projectPiki/pikmin2.git
synced 2024-11-26 23:00:27 +00:00
46d0da417c
* Metrowerks overhaul -Make MSL_C match under inline deferred -Overhaul metrowerks header files * repair file-end newlines * formatting clang format is happy now. some questionable formatting choices, especially strtoul.h * fix two ending newlines with extensionless files * More formatting * Match alloc.c * Match mem_funcs.c * Fix makefile * Make Runtime and TRK match under deferred * hopefully fix the configure script --------- Co-authored-by: EpochFlame <jupiterror@gmail.com>
18 lines
278 B
C
18 lines
278 B
C
#ifndef _DOLPHIN_PRINT_H
|
|
#define _DOLPHIN_PRINT_H
|
|
|
|
#include "stdio.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif // ifdef __cplusplus
|
|
|
|
#define DEFINE__PRINT(unit) \
|
|
inline static void _Print(char*, ...) { printf(unit); }
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif // ifdef __cplusplus
|
|
|
|
#endif
|