about summary refs log tree commit diff
path: root/sysdeps/generic/dl-execstack.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2004-01-16 02:45:47 +0000
committerUlrich Drepper <drepper@redhat.com>2004-01-16 02:45:47 +0000
commitd8e36e001c7e276d17b911d9c4eabe33358a3ed0 (patch)
tree320925458cbac66960a1e15a369dcd953f21acba /sysdeps/generic/dl-execstack.c
parent828037ae0e5ce383531e73d5878a4a700669e295 (diff)
downloadglibc-d8e36e001c7e276d17b911d9c4eabe33358a3ed0.tar.gz
glibc-d8e36e001c7e276d17b911d9c4eabe33358a3ed0.tar.xz
glibc-d8e36e001c7e276d17b911d9c4eabe33358a3ed0.zip
Update.
2004-01-16  Alfred M. Szmidt  <ams@kemisten.nu>

	* sysdeps/generic/dl-execstack.c (_dl_make_stack_executable): Adjust
	parameter type.
Diffstat (limited to 'sysdeps/generic/dl-execstack.c')
-rw-r--r--sysdeps/generic/dl-execstack.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/generic/dl-execstack.c b/sysdeps/generic/dl-execstack.c
index 04f87cf519..6dce21e7a1 100644
--- a/sysdeps/generic/dl-execstack.c
+++ b/sysdeps/generic/dl-execstack.c
@@ -1,5 +1,5 @@
 /* Stack executability handling for GNU dynamic linker.  Stub version.
-   Copyright (C) 2003 Free Software Foundation, Inc.
+   Copyright (C) 2003, 2004 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -25,7 +25,7 @@
 
 int
 internal_function
-_dl_make_stack_executable (void)
+_dl_make_stack_executable (void **stack_endp)
 {
   return ENOSYS;
 }