[uClibc-cvs] uClibc/ldso/include dl-elf.h,1.10,1.11
Erik Andersen
andersen at uclibc.org
Fri Feb 20 02:40:18 UTC 2004
Update of /var/cvs/uClibc/ldso/include
In directory nail:/tmp/cvs-serv4560/include
Modified Files:
dl-elf.h
Log Message:
Slightly cleaner formatting
Index: dl-elf.h
===================================================================
RCS file: /var/cvs/uClibc/ldso/include/dl-elf.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- dl-elf.h 14 Feb 2004 11:30:30 -0000 1.10
+++ dl-elf.h 20 Feb 2004 02:40:15 -0000 1.11
@@ -99,12 +99,12 @@
not support copy relocations. In this case we define the macro to
zero so that the code for handling them gets automatically optimized
out. */
-#define ELF_RTYPE_CLASS_PLT 1
-#ifndef DL_NO_COPY_RELOCS
-# define ELF_RTYPE_CLASS_COPY 2
+#ifdef DL_NO_COPY_RELOCS
+# define ELF_RTYPE_CLASS_COPY (0x0)
#else
-# define ELF_RTYPE_CLASS_COPY 0
+# define ELF_RTYPE_CLASS_COPY (0x1)
#endif
+#define ELF_RTYPE_CLASS_PLT (0x2)
/* Convert between the Linux flags for page protections and the
More information about the uClibc-cvs
mailing list