summaryrefslogtreecommitdiffstats
path: root/packages/Python/lldbsuite/test/lang/c/const_variables/functions.c
blob: c9ea63837c8bb9fde0c5d084b1052df6cfea736f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <stdio.h>

void foo()
{
  printf("foo()\n");
}

int bar()
{
  int ret = 3;
  printf("bar()->%d\n", ret);
  return ret;
}

void baaz(int i)
{
  printf("baaz(%d)\n", i);
}
OpenPOWER on IntegriCloud