mirror of
https://review.haiku-os.org/buildtools
synced 2024-11-23 07:18:49 +01:00
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__)))
|
|
{
|
|
}
|