~mmach/netext73/meson

« back to all changes in this revision

Viewing changes to test cases/failing/66 subproj different versions/main.c

  • Committer: mmach
  • Date: 2023-03-15 07:28:10 UTC
  • Revision ID: netbit73@gmail.com-20230315072810-rjs3fs158gp6aup7
dla focal

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <stdio.h>
 
2
#include "a.h"
 
3
#include "b.h"
 
4
 
 
5
int main(int argc, char **argv) {
 
6
    int life = a_fun() + b_fun();
 
7
    printf("%d\n", life);
 
8
    return 0;
 
9
}