diff options
Diffstat (limited to 'lib/libc/arch/mips/net')
-rw-r--r-- | lib/libc/arch/mips/net/htonl.S | 10 | ||||
-rw-r--r-- | lib/libc/arch/mips/net/htons.S | 10 |
2 files changed, 18 insertions, 2 deletions
diff --git a/lib/libc/arch/mips/net/htonl.S b/lib/libc/arch/mips/net/htonl.S index 98c8a0af4a9..732a52e1912 100644 --- a/lib/libc/arch/mips/net/htonl.S +++ b/lib/libc/arch/mips/net/htonl.S @@ -34,13 +34,21 @@ * SUCH DAMAGE. */ +#if MACHINE==pica +#include <machine/asm.h> +#else #include <machine/machAsmDefs.h> +#endif #if defined(LIBC_SCCS) && !defined(lint) ASMSTR("from: @(#)htonl.s 8.1 (Berkeley) 6/4/93") - ASMSTR("$Id: htonl.S,v 1.1 1995/10/18 08:41:34 deraadt Exp $") + ASMSTR("$Id: htonl.S,v 1.2 1996/05/16 11:16:02 pefo Exp $") #endif /* LIBC_SCCS and not lint */ + +#ifdef ABICALLS + .abicalls +#endif /* * netorder = htonl(hostorder) * hostorder = ntohl(netorder) diff --git a/lib/libc/arch/mips/net/htons.S b/lib/libc/arch/mips/net/htons.S index 306c5fa92a4..98e8cb061a2 100644 --- a/lib/libc/arch/mips/net/htons.S +++ b/lib/libc/arch/mips/net/htons.S @@ -34,13 +34,21 @@ * SUCH DAMAGE. */ +#if MACHINE==pica +#include <machine/asm.h> +#else #include <machine/machAsmDefs.h> +#endif #if defined(LIBC_SCCS) && !defined(lint) ASMSTR("from: @(#)htons.s 8.1 (Berkeley) 6/4/93") - ASMSTR("$Id: htons.S,v 1.1 1995/10/18 08:41:34 deraadt Exp $") + ASMSTR("$Id: htons.S,v 1.2 1996/05/16 11:16:03 pefo Exp $") #endif /* LIBC_SCCS and not lint */ + +#ifdef ABICALLS + .abicalls +#endif /* * netorder = htons(hostorder) * hostorder = ntohs(netorder) |