summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/lldb/packages/Python/lldbsuite/test/functionalities/thread/step_until/main.c
blob: e0b4d8ab951e533217780489ddcc8f02df069f0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <stdio.h>

void call_me(int argc)
{
  printf ("At the start, argc: %d.\n", argc);

  if (argc < 2)
    printf("Less than 2.\n");
  else
    printf("Greater than or equal to 2.\n");
}

int
main(int argc, char **argv)
{
  call_me(argc);
  printf("Back out in main.\n");

  return 0;
}