fabs.c   [plain text]


/*
 *  fabs.c
 *  cLibm
 *
 *  Created by Ian Ollmann on 6/13/07.
 *  Copyright 2007 Apple Inc. All rights reserved.
 *
 */

#include <math.h>

double fabs( double f )
{
	return __builtin_fabs(f);
}