change macro defines to accord with change in submodule code

time-shift
Houtan Bastani 2011-03-04 11:35:38 +01:00
parent 99715f4f02
commit b744707672
1 changed files with 5 additions and 5 deletions

View File

@ -26,11 +26,11 @@
#include <dynblas.h>
#include <dynlapack.h>
#define dw_malloc(n) mxMalloc(n)
#define dw_calloc(n) mxCalloc(n)
#define dw_realloc(buffer,n) mxRealloc(buffer,n)
#define dw_free(buffer) mxFree(buffer)
#define dw_exit(n) msExit(n)
#define dw_malloc mxMalloc
#define dw_calloc mxCalloc
#define dw_realloc mxRealloc
#define dw_free mxFree
#define dw_exit msExit
void msExit(int status);
extern int constant_seed;