litex/software/include/basec++/cstddef
whitequark 7a9975ab5a Add a stub C++ standard library.
This is necessary to build libunwind.
2015-07-26 12:49:21 +03:00

11 lines
151 B
Text

#ifndef __CXX_CSTDDEF
#define __CXX_CSTDDEF
#include <stddef.h>
namespace std {
using ::size_t;
using ::ptrdiff_t;
}
#endif /* __CXX_CSTDDEF */