aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/unit/56 dedup compiler libs/app/app.c
blob: 4e215b30b8f6945f170114d26fdcfdaa48a038c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>
#include <liba.h>
#include <libb.h>

int
main(void)
{
  printf("start value = %d\n", liba_get());
  liba_add(2);
  libb_mul(5);
  printf("end value = %d\n", liba_get());
  return 0;
}