mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 15:01:53 -04:00
a7edd19f16
* cleanup SSystem files * MSL_C fully matched * fix build * remove asm * reorganize MSL_C/Runtime libs into more accurate setup * little more cleanup * cleanup some MSL headers * obj_rgate OK * remove asm * some rgate documentation
14 lines
372 B
C
14 lines
372 B
C
#ifndef M_DO_M_DO_PRINTF_H
|
|
#define M_DO_M_DO_PRINTF_H
|
|
|
|
#include "__va_arg.h"
|
|
#include "m_Do/m_Do_main.h"
|
|
|
|
void my_PutString(const char*);
|
|
void mDoPrintf_vprintf_Interrupt(char const*, va_list);
|
|
void mDoPrintf_vprintf_Thread(char const*, va_list);
|
|
void mDoPrintf_vprintf(const char*, va_list);
|
|
void mDoPrintf_VReport(const char*, va_list);
|
|
|
|
#endif /* M_DO_M_DO_PRINTF_H */
|