summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartynas Venckus <martynas@cvs.openbsd.org>2008-06-11 21:16:44 +0000
committerMartynas Venckus <martynas@cvs.openbsd.org>2008-06-11 21:16:44 +0000
commit8f6f6630d17d5b8c1f6bd4de107a858aaad605ae (patch)
tree25d3f048c06d4a18ffe39b7d54782643b2a98ef3
parentdae70ef557d1246e8797e3f085d66bc6e926e8c0 (diff)
tgamma and tgammaf
-rw-r--r--include/math.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/math.h b/include/math.h
index 75518ac78e2..67b670334c2 100644
--- a/include/math.h
+++ b/include/math.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: math.h,v 1.14 2006/07/12 07:26:07 brad Exp $ */
+/* $OpenBSD: math.h,v 1.15 2008/06/11 21:16:43 martynas Exp $ */
/*
* ====================================================
* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
@@ -156,6 +156,7 @@ extern double j0(double);
extern double j1(double);
extern double jn(int, double);
extern double lgamma(double);
+extern double tgamma(double);
extern double y0(double);
extern double y1(double);
extern double yn(int, double);
@@ -251,6 +252,7 @@ extern float j0f(float);
extern float j1f(float);
extern float jnf(int, float);
extern float lgammaf(float);
+extern float tgammaf(float);
extern float y0f(float);
extern float y1f(float);
extern float ynf(int, float);