This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

type conflict


Patch attached to fix the following (on GNU/Hurd as always):

../sysdeps/generic/dl-execstack.c:29: error: conflicting types for `_dl_make_stack_executable'
../sysdeps/generic/ldsodefs.h:456: error: previous declaration of `_dl_make_stack_executable'

2004-01-16  Alfred M. Szmidt  <ams@kemisten.nu>

	* sysdeps/generic/dl-execstack.c (_dl_make_stack_executable): Fix
	typo.

Index: sysdeps/generic/dl-execstack.c
===================================================================
RCS file: /cvs/glibc/libc/sysdeps/generic/dl-execstack.c,v
retrieving revision 1.1
diff -u -r1.1 dl-execstack.c
--- sysdeps/generic/dl-execstack.c	23 Sep 2003 12:06:48 -0000	1.1
+++ sysdeps/generic/dl-execstack.c	16 Jan 2004 02:08:14 -0000
@@ -25,7 +25,7 @@
 
 int
 internal_function
-_dl_make_stack_executable (void)
+_dl_make_stack_executable (void **stack_endp)
 {
   return ENOSYS;
 }


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]