about summary refs log tree commit diff
path: root/elf/dl-runtime.c
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2002-02-06 14:19:54 +0000
committerAndreas Jaeger <aj@suse.de>2002-02-06 14:19:54 +0000
commit64b6bd34ef7cd7db0d87cb49f38b3138831f6d6f (patch)
tree038884b82b4bf5db6a3c3fe200dba322032b0259 /elf/dl-runtime.c
parentcff26a3ed5bd059083d209d78882bd50f9c427ed (diff)
downloadglibc-64b6bd34ef7cd7db0d87cb49f38b3138831f6d6f.tar.gz
glibc-64b6bd34ef7cd7db0d87cb49f38b3138831f6d6f.tar.xz
glibc-64b6bd34ef7cd7db0d87cb49f38b3138831f6d6f.zip
Update.
	* elf/dl-error.c: Likewise.
	* elf/dl-fini.c: Likewise.
	* elf/dl-runtime.c: Likewise.
	* elf/do-lookup.h: Likewise.
Diffstat (limited to 'elf/dl-runtime.c')
-rw-r--r--elf/dl-runtime.c36
1 files changed, 18 insertions, 18 deletions
diff --git a/elf/dl-runtime.c b/elf/dl-runtime.c
index be5d8b68ad..de4639a3d0 100644
--- a/elf/dl-runtime.c
+++ b/elf/dl-runtime.c
@@ -87,18 +87,18 @@ fixup (
 
 	    if (version->hash != 0)
 	      {
-		result = INT(_dl_lookup_versioned_symbol) (strtab
-							   + sym->st_name,
-							   l, &sym, l->l_scope,
-							   version,
-							   ELF_RTYPE_CLASS_PLT,
-							   0);
+		result = INTUSE(_dl_lookup_versioned_symbol) (strtab
+							      + sym->st_name,
+							      l, &sym, l->l_scope,
+							      version,
+							      ELF_RTYPE_CLASS_PLT,
+							      0);
 		break;
 	      }
 	  }
 	case 0:
-	  result = INT(_dl_lookup_symbol) (strtab + sym->st_name, l, &sym,
-					   l->l_scope, ELF_RTYPE_CLASS_PLT, 0);
+	  result = INTUSE(_dl_lookup_symbol) (strtab + sym->st_name, l, &sym,
+					      l->l_scope, ELF_RTYPE_CLASS_PLT, 0);
 	}
 
       /* Currently result contains the base load address (or link map)
@@ -181,20 +181,20 @@ profile_fixup (
 
 		if (version->hash != 0)
 		  {
-		    result = INT(_dl_lookup_versioned_symbol) (strtab
-							       + sym->st_name,
-							       l, &sym,
-							       l->l_scope,
-							       version,
-							       ELF_RTYPE_CLASS_PLT,
-							       0);
+		    result = INTUSE(_dl_lookup_versioned_symbol) (strtab
+								  + sym->st_name,
+								  l, &sym,
+								  l->l_scope,
+								  version,
+								  ELF_RTYPE_CLASS_PLT,
+								  0);
 		    break;
 		  }
 	      }
 	    case 0:
-	      result = INT(_dl_lookup_symbol) (strtab + sym->st_name, l, &sym,
-					       l->l_scope, ELF_RTYPE_CLASS_PLT,
-					       0);
+	      result = INTUSE(_dl_lookup_symbol) (strtab + sym->st_name, l, &sym,
+						  l->l_scope, ELF_RTYPE_CLASS_PLT,
+						  0);
 	    }
 
 	  /* Currently result contains the base load address (or link map)