xref: /netbsd-src/external/gpl3/gcc.old/dist/libgcc/enable-execute-stack-empty.c (revision deb6f0161a9109e7de9b519dc8dfb9478668dcdd)
1 /* Dummy implementation of __enable_execute_stack.  */
2 
3 extern void __enable_execute_stack (void *);
4 
5 /* Attempt to turn on execute permission for the stack.  */
6 
7 void
8 __enable_execute_stack (void *addr __attribute__((__unused__)))
9 {
10 }
11