forked from KolibriOS/kolibrios
c7fc8e91d0
git-svn-id: svn://kolibrios.org@6515 a494cfbc-eb01-0410-851d-a64ba20cac60
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__)))
|
|
{
|
|
}
|