mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-04 19:17:47 +00:00
12 lines
272 B
C
12 lines
272 B
C
typedef short myint;
|
|
int add(int a, int b);
|
|
typedef int (*binop_t) (int, int);
|
|
int doCallback(int a, int b, binop_t cb);
|
|
typedef int * intPointer;
|
|
extern int global;
|
|
void store(int value, int *ptr);
|
|
|
|
// test duplicate definitions
|
|
int add(int a, int b);
|
|
extern int global;
|