aboutsummaryrefslogtreecommitdiff
path: root/test cases/linuxlike/12 subprojects in subprojects/main.c
blob: e4969c34822e9cf8b2176c62c4b600c364522a0b (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>
#include "a.h"
#include "b.h"

int main() {
    int life = a_fun() + b_fun();
    printf("%d\n", life);
    return 0;
}