blob: a8504ff2afb06077bd2262fffc3fea5bf6084fe3 [file] [log] [blame] [edit]
#include <stdint.h>
typedef struct TestStruct {
uint8_t x;
int32_t y;
} TestStruct;
typedef int callback(TestStruct s);
uint32_t call(callback *c) {
TestStruct s;
s.x = 'a';
s.y = 3;
return c(s);
}