summaryrefslogtreecommitdiff
path: root/lib/libm/arch/i387/e_sqrt.S
blob: a0dee4c96e834a278e8a35249e772237ef157cd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*	$OpenBSD: e_sqrt.S,v 1.4 2016/09/12 19:47:02 guenther Exp $ */
/*
 * Written by J.T. Conklin <jtc@netbsd.org>.
 * Public domain.
 */

#include "DEFS.h"

ENTRY(sqrt)
	fldl	4(%esp)
	fsqrt
	ret
END_STD(sqrt)