mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
8 lines
141 B
C
8 lines
141 B
C
|
#include "lapacke.h"
|
||
|
int main() {
|
||
|
void *p = LAPACKE_malloc(sizeof(char)*100);
|
||
|
if (p) {
|
||
|
LAPACKE_free(p);
|
||
|
}
|
||
|
return 0;
|
||
|
}
|