aboutsummaryrefslogtreecommitdiff
path: root/tests/asm-c-connect-2.c
blob: 7ab9dc3ef98ca8cb91189ebbb1aeaeea86b825ed (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>

int x3(void)
{
    printf("x3\n");
    return 3;
}

void callx4(void);
__asm__("callx4: call x4; ret");