1// This is equivalent to the --noexecstack flag.
2// Without this, a bare assembly file can be presumed to require
3// executable stack and cause a PT_GNU_STACK program header that says so.
4#if defined(__ASSEMBLER__) && defined(__ELF__)
5.section .note.GNU-stack,""
6#endif
7