glibc/tests/Standardscompliance/bz531160-ldd-Vulnerable-to-Social-Engineering-Exploits/interp.c

8 lines
119 B
C
Raw Normal View History

#define MESG "you are not suppposed to see this\n"
int main()
{
write(1, MESG, sizeof(MESG) - 1);
return 0;
}