mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-06 12:03:41 +00:00
10 lines
195 B
C
10 lines
195 B
C
typedef short myint;
|
|
int add(int a, int b);
|
|
typedef int * intPointer;
|
|
extern int global;
|
|
void store(int value, int *ptr);
|
|
|
|
// test duplicate definitions
|
|
int add(int a, int b);
|
|
extern int global;
|