summaryrefslogtreecommitdiff
path: root/tests/projects/other/build_deps/src/test2.c
blob: d438027e836ae053a91d5edc7651d5ba749d9667 (plain)
1
2
3
4
5
6
7
8
#include "interface.h"
#include <stdio.h>
  
int main(int argc, char** argv)
{
    printf("add(1, 2) = %d\n", add(1, 2));
    return 0;
}