summary refs log tree commit diff
path: root/src/test/run-make/extern-fn-generic/test.c
blob: f9faef64afc41a519832a2372d48e7cea401fad4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// ignore-license
#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);
}