aboutsummaryrefslogtreecommitdiffstats
path: root/multiple_labels_crash_test/driver.c
blob: 3084e1313447da1799888ff11ce9000a3726c570 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>
#include "init.h"

extern void init ();
extern void foo ();
extern unsigned long long int checksum ();

int main () {
    init ();
    foo ();
    printf("%llu\n", checksum ());    return 0;
}