Remove 80386 support from libc.

This commit is contained in:
John Baldwin 2004-11-16 21:01:31 +00:00
parent 165204a75f
commit d0565c1493
2 changed files with 0 additions and 12 deletions
lib/libc/i386/net

@ -46,11 +46,5 @@ __FBSDID("$FreeBSD$");
.set CNAME(htonl),CNAME(__htonl)
ENTRY(__htonl)
movl 4(%esp),%eax
#ifdef I386_CPU
xchgb %al,%ah
roll $16,%eax
xchgb %al,%ah
#else
bswap %eax
#endif
ret

@ -46,11 +46,5 @@ __FBSDID("$FreeBSD$");
.set CNAME(ntohl),CNAME(__ntohl)
ENTRY(__ntohl)
movl 4(%esp),%eax
#ifdef I386_CPU
xchgb %al,%ah
roll $16,%eax
xchgb %al,%ah
#else
bswap %eax
#endif
ret