aboutsummaryrefslogtreecommitdiff
path: root/compiler/tests/modules/import_function.good
blob: 179cda351a8fc89cb2dddd1de568b6206880068c (plain)
1
2
3
4
5
6
7
8
9

linkname "";
uses c89:stdio:puts as puts;

int main() {
    puts("Hello world!");
    return 0;
}