repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[libc++] Remove duplicated _LIBCPP_HIDE_FROM_ABI from a few declarations (#122323)
[llvm-project.git]
/
lldb
/
test
/
API
/
commands
/
process
/
launch
/
main.cpp
blob
f2035d55167952bad1b2980f66af46a14e20d846
1
#include <stdio.h>
2
#include <stdlib.h>
3
4
int
5
main
(
int
argc
,
char
**
argv
)
6
{
7
char
buffer
[
1024
];
8
9
fgets
(
buffer
,
sizeof
(
buffer
),
stdin
);
10
fprintf
(
stdout
,
"%s"
,
buffer
);
11
12
13
fgets
(
buffer
,
sizeof
(
buffer
),
stdin
);
14
fprintf
(
stderr
,
"%s"
,
buffer
);
15
16
return
0
;
17
}