1/* 2 * tgammaf.c 3 * 4 * by Ian Ollmann 5 * 6 * Copyright (c) 2007, Apple Inc. All Rights Reserved. 7 * 8 */ 9 10#include <math.h> 11 12float tgammaf( float x ) 13{ 14 return (float) tgamma( (double) x ); 15}