10 lines
140 B
C
10 lines
140 B
C
|
#include <unistd.h>
|
||
|
|
||
|
#define MESG "you are not suppposed to see this\n"
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
write(1, MESG, sizeof(MESG) - 1);
|
||
|
return 0;
|
||
|
}
|