diff --git a/driver/others/openblas_get_parallel.c b/driver/others/openblas_get_parallel.c index ea2e4d986..76107dabd 100644 --- a/driver/others/openblas_get_parallel.c +++ b/driver/others/openblas_get_parallel.c @@ -40,6 +40,8 @@ static int parallel = 1; static int parallel = 0; #endif + +#ifdef NEEDBUNDERSCORE int CNAME() { return parallel; } @@ -48,5 +50,10 @@ int NAME() { return parallel; } - +#else +//The CNAME and NAME are the same. +int NAME() { + return parallel; +} +#endif