summaryrefslogtreecommitdiff
path: root/lang/julia10/files/check_openblas.c
blob: 6218d3507c65da14403d2195c0713de910182b03 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include <string.h>

char* openblas_get_config(void);

int main()
{
    if (strstr(openblas_get_config(), "USE64BITINT") == NULL)
        return 1;
    return 0;
}