diff options
Diffstat (limited to 'sysdeps/i386/i486')
-rw-r--r-- | sysdeps/i386/i486/htonl.S | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/sysdeps/i386/i486/htonl.S b/sysdeps/i386/i486/htonl.S index cf3a94fc76..a61b339b81 100644 --- a/sysdeps/i386/i486/htonl.S +++ b/sysdeps/i386/i486/htonl.S @@ -26,12 +26,10 @@ */ .text -ENTRY (__htonl) +ENTRY (htonl) movl 4(%esp), %eax bswap %eax ret -END (__htonl) +END (htonl) -strong_alias (__htonl, __ntohl) -weak_alias (__htonl, htonl) -weak_alias (__ntohl, ntohl) +weak_alias (htonl, ntohl) |