summaryrefslogtreecommitdiff
path: root/lldb/test/Shell/Process/Inputs/echo.c
blob: dc8db7368f5d092d0480c121341c70bcdf888c36 (plain)
1
2
3
4
5
6
#include <stdio.h>

int main(int argc, char **argv) {
  for (int i = 0; i < argc; ++i)
    printf("%s\n", argv[i]);
}