Files
2023-06-25 16:52:48 -04:00

12 lines
159 B
Plaintext

#ifndef MSL_CPP_CSTDARG_H
#define MSL_CPP_CSTDARG_H
#include <stdarg.h>
#ifdef __cplusplus
namespace std {
using ::va_list;
} // namespace std
#endif
#endif