summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/functionalities/tty/main.c
blob: 71c854b5bf40e564df4fcda4cfeabfe70e8fe58d (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>

int
main(int argc, char** argv)
{
  for (int i = 0; i < argc; i++) {
    printf("%d: %s.\n", i, argv[i]);
  }
  return 0;
}
OpenPOWER on IntegriCloud