/*
 * sqrt.h
 *
 * [Generated from sqrt, 25 September 1996]
 */

#if !defined(__CC_NORCROFT) || !defined(__arm)
  #error You must use the Norcroft ARM Compiler for Sapphire programs
#endif

#pragma include_only_once
#pragma force_top_level

#ifndef __sqrt_h
#define __sqrt_h

#ifndef __sapphire_h
  #include "sapphire.h"
#endif

/*----- Overview ----------------------------------------------------------*
 *
 * Functions provided:
 *
 *  sqrt
 */

/* --- sqrt --- *
 *
 * On entry:	R0 == value to square-root
 *
 * On exit:	R0 == the result
 *
 * Use:		Evaluates the square root of the number given.  This routine
 *		is constructed from the information supplied by David Seal,
 *		and is *extremely* fast.
 */

extern routine sqrt;

/*----- That's all, folks -------------------------------------------------*/

#endif
