You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
simulacion-permeabilidad/fftma_module/gen/sources/allouememoire.c

17 lines
293 B
C

#include <stdio.h>
#include <stddef.h>
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
#include <math.h>
void allouememoire(double *realint, string variable)
{
if (realint == NULL) {
printf("Testmemory.c: No memory available for %s\n",variable);
exit;
}
return;
}