mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 20:01:13 -05:00
17 lines
268 B
C++
17 lines
268 B
C++
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
char buffer[1024];
|
|
|
|
fgets (buffer, sizeof (buffer), stdin);
|
|
fprintf (stdout, "%s", buffer);
|
|
|
|
|
|
fgets (buffer, sizeof (buffer), stdin);
|
|
fprintf (stderr, "%s", buffer);
|
|
|
|
return 0;
|
|
}
|