glibc/tests/Standardscompliance/bz531160-ldd-Vulnerable-to-Social-Engineering-Exploits/interp.c
Sergey Kolosov 823c0aee76 CI Tests: add fmf test plan
Resolves: RHEL-65327
2025-01-08 19:01:11 +00:00

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;
}