mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
7a9975ab5a
This is necessary to build libunwind.
11 lines
151 B
Text
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 */
|