mirror of
https://git.freebsd.org/ports.git
synced 2025-06-22 21:20:31 -04:00
- Update lang/julia07 to 0.7.0 - Update lang/julia to 0.1.0 PR: 230663 Submitted by: Iblis Lin <iblis@hs.ntnu.edu.tw> (maintainer)
10 lines
164 B
C
10 lines
164 B
C
#include <string.h>
|
|
|
|
char* openblas_get_config(void);
|
|
|
|
int main()
|
|
{
|
|
if (strstr(openblas_get_config(), "USE64BITINT") == NULL)
|
|
return 1;
|
|
return 0;
|
|
}
|