21 lines
295 B
C++
21 lines
295 B
C++
#include <cstdarg>
|
|
#include <cstdint>
|
|
#include <cstdlib>
|
|
#include <ostream>
|
|
#include <new>
|
|
|
|
constexpr static const intptr_t SIZE = 4;
|
|
|
|
struct WithoutAs {
|
|
uint32_t items[SIZE];
|
|
};
|
|
|
|
struct WithAs {
|
|
uint32_t items[SIZE];
|
|
};
|
|
|
|
extern "C" {
|
|
|
|
void some_fn(WithoutAs a, WithAs b);
|
|
|
|
} // extern "C"
|