diff options
Diffstat (limited to 'sysdeps/i386/htonl.S')
-rw-r--r-- | sysdeps/i386/htonl.S | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/sysdeps/i386/htonl.S b/sysdeps/i386/htonl.S index 73dd1e9bea..9c87be6392 100644 --- a/sysdeps/i386/htonl.S +++ b/sysdeps/i386/htonl.S @@ -26,14 +26,12 @@ */ .text -ENTRY (__htonl) +ENTRY (htonl) movl 4(%esp), %eax rorw $8, %ax rorl $16, %eax rorw $8, %ax ret -END (__htonl) +END (htonl) -strong_alias (__htonl, __ntohl) -weak_alias (__htonl, htonl) -weak_alias (__ntohl, ntohl) +weak_alias (htonl, ntohl) |