mirror of
https://github.com/bitwiseworks/gcc-os2.git
synced 2026-02-10 04:04:45 +00:00
Source URL: git://gcc.gnu.org/git/gcc.git Source Commit: 3e7b85061947bdc7c7465743ba90734566860821
11 lines
236 B
C
11 lines
236 B
C
/* Dummy implementation of __enable_execute_stack. */
|
|
|
|
extern void __enable_execute_stack (void *);
|
|
|
|
/* Attempt to turn on execute permission for the stack. */
|
|
|
|
void
|
|
__enable_execute_stack (void *addr __attribute__((__unused__)))
|
|
{
|
|
}
|