summaryrefslogtreecommitdiffstats
path: root/lib/libc/arch/amd64/net/htonl.S
blob: 2895aa4e612e70117b99d5d733579e5f054cb8b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*	$OpenBSD: htonl.S,v 1.3 2018/07/03 23:14:05 mortimer Exp $	*/

/* Written by Artur Grabowski. Public Domain */

#include <machine/asm.h>

ENTRY(htonl)
	RETGUARD_SETUP(htonl, r11)
	movl    %edi,%eax
	bswapl  %eax
	RETGUARD_CHECK(htonl, r11)
	ret
END(htonl)