blob: 54628ea6ea55f5d389bf7b288ef62b5db24634af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef _MSL_STDARG_H_
#define _MSL_STDARG_H_
#include <cstdarg>
#ifdef __cplusplus
extern "C" {
#endif
namespace std {
using ::va_list;
}
#ifdef __cplusplus
};
#endif
#endif
|