mirror of
https://github.com/GaloisInc/macaw.git
synced 2024-12-02 10:54:04 +03:00
17 lines
152 B
C
17 lines
152 B
C
#include "util.h"
|
|
|
|
int g = -11;
|
|
|
|
int (*fptr)(int);
|
|
|
|
int callee(int x) {
|
|
return x * 2;
|
|
}
|
|
|
|
void _start() {
|
|
fptr = callee;
|
|
g = fptr(g);
|
|
|
|
EXIT();
|
|
}
|