Browse Source

ldso/include: change guard of headers to reflect the file names.

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Peter S. Mazinger 13 years ago
parent
commit
acbf938705
3 changed files with 9 additions and 9 deletions
  1. 3 3
      ldso/include/dl-hash.h
  2. 3 3
      ldso/include/dl-syscall.h
  3. 3 3
      ldso/include/ldso.h

+ 3 - 3
ldso/include/dl-hash.h

@@ -5,8 +5,8 @@
  * GNU Lesser General Public License version 2.1 or later.
  */
 
-#ifndef _LD_HASH_H_
-#define _LD_HASH_H_
+#ifndef _DL_HASH_H
+#define _DL_HASH_H
 
 #ifndef RTLD_NEXT
 #define RTLD_NEXT	((void*)-1)
@@ -180,4 +180,4 @@ extern char * _dl_library_path;
 #define LD_BAD_HANDLE 10
 #define LD_NO_SYMBOL 11
 
-#endif /* _LD_HASH_H_ */
+#endif /* _DL_HASH_H */

+ 3 - 3
ldso/include/dl-syscall.h

@@ -5,8 +5,8 @@
  * GNU Lesser General Public License version 2.1 or later.
  */
 
-#ifndef _LD_SYSCALL_H_
-#define _LD_SYSCALL_H_
+#ifndef _DL_SYSCALL_H
+#define _DL_SYSCALL_H
 
 /* We can't use the real errno in ldso, since it has not yet
  * been dynamicly linked in yet. */
@@ -187,4 +187,4 @@ void *_dl_mmap(void *addr, unsigned long size, int prot,
 #endif
 }
 
-#endif /* _LD_SYSCALL_H_ */
+#endif /* _DL_SYSCALL_H */

+ 3 - 3
ldso/include/ldso.h

@@ -5,8 +5,8 @@
  * GNU Lesser General Public License version 2.1 or later.
  */
 
-#ifndef _LDSO_H_
-#define _LDSO_H_
+#ifndef _LDSO_H
+#define _LDSO_H
 
 #include <features.h>
 
@@ -171,4 +171,4 @@ extern void *_dl_get_ready_to_run(struct elf_resolve *tpnt, DL_LOADADDR_TYPE loa
 #include <dl-defs.h>
 #endif
 
-#endif /* _LDSO_H_ */
+#endif /* _LDSO_H */