litex/software/include/basec++/cstddef

12 lines
151 B
Plaintext
Raw Normal View History

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