Skip to content
Snippets Groups Projects
Commit 4dcec728 authored by Oliver Sander's avatar Oliver Sander
Browse files

SLU_Malloc is now declared in the header slu.h

[[Imported from SVN: r8183]]
parent 67fc360f
No related branches found
No related tags found
No related merge requests found
......@@ -34,6 +34,8 @@
#include "dsp_defs.h"
#include "util.h"
#include "../slu.h"
/*
* Global statistics variale
*/
......@@ -45,10 +47,9 @@ void superlu_abort_and_exit(char* msg)
exit (-1);
}
void *SLU_Malloc (int size); /* imported from slu.c */
void *superlu_malloc(int size)
{
return(SLU_Malloc(size));
return NS_DIM_PREFIX SLU_Malloc(size);
/*void *buf;
buf = (void *) malloc(size);
return (buf);*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment