#include #include #include "aplinks.h" #include "disp_ctr.h" static int *res_p; int exec_alloc(unsigned int size) { if((res_p = malloc(size)) == NULL){ c_fprintf(2, stderr, "実行に必要なメモリを確保できませんでした。\n"); exit(-1); return -1; } else{ return 0; } } int exec_free(void) { free(res_p); return 0; }