diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2013-03-14 09:35:54 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2013-03-14 09:35:54 +0000 |
commit | 7fae1925b1c961829d9daef53c7681afb3fb7cdb (patch) | |
tree | 005218681641f413129cafcbb5cb138a57361810 /Build/source/utils/pmx/pmx-2.6.21/libf2c/erfc_.c | |
parent | 1b8c4cc3f55cb21b1b603715c16d44775cff555f (diff) |
pmx 2.6.21
git-svn-id: svn://tug.org/texlive/trunk@29380 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/pmx/pmx-2.6.21/libf2c/erfc_.c')
-rw-r--r-- | Build/source/utils/pmx/pmx-2.6.21/libf2c/erfc_.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Build/source/utils/pmx/pmx-2.6.21/libf2c/erfc_.c b/Build/source/utils/pmx/pmx-2.6.21/libf2c/erfc_.c new file mode 100644 index 00000000000..6f6c9f10644 --- /dev/null +++ b/Build/source/utils/pmx/pmx-2.6.21/libf2c/erfc_.c @@ -0,0 +1,22 @@ +#include "f2c.h" +#ifdef __cplusplus +extern "C" { +#endif + +#ifndef REAL +#define REAL double +#endif + +#ifdef KR_headers +double erfc(); +REAL erfc_(x) real *x; +#else +extern double erfc(double); +REAL erfc_(real *x) +#endif +{ +return( erfc((double)*x) ); +} +#ifdef __cplusplus +} +#endif |