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/testmemory.c

16 lines
257 B
C

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