[libc++] Remove duplicated _LIBCPP_HIDE_FROM_ABI from a few declarations (#122323)
[llvm-project.git] / lldb / test / API / commands / process / launch / main.cpp
blobf2035d55167952bad1b2980f66af46a14e20d846
1 #include <stdio.h>
2 #include <stdlib.h>
4 int
5 main (int argc, char **argv)
7 char buffer[1024];
9 fgets (buffer, sizeof (buffer), stdin);
10 fprintf (stdout, "%s", buffer);
13 fgets (buffer, sizeof (buffer), stdin);
14 fprintf (stderr, "%s", buffer);
16 return 0;