Skip to content

Commit ec41733

Browse files
committed
add DLLEXPORT to bsdsrc files
1 parent 18f475d commit ec41733

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

bsdsrc/b_exp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ static const double lntiny = -0x1.77af8ebeae354p9;
8282
static const double invln2 = 0x1.71547652b82fep0;
8383

8484
#if 0
85-
double exp(x)
85+
DLLEXPORT double exp(x)
8686
double x;
8787
{
8888
double z,hi,lo,c;

bsdsrc/b_log.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ static double logF_tail[N+1] = {
352352
};
353353

354354
#if 0
355-
double
355+
DLLEXPORT double
356356
#ifdef _ANSI_SOURCE
357357
log(double x)
358358
#else

bsdsrc/b_tgamma.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ static struct Double ratfun_gam(double, double);
121121

122122
static const double zero = 0., one = 1.0, tiny = 1e-300;
123123

124-
double
124+
DLLEXPORT double
125125
tgamma(x)
126126
double x;
127127
{

0 commit comments

Comments
 (0)