#ifndef MATALLOC_H_ #define MATALLOC_H double **dmatalloc(int m, int n); int **imatalloc(int m, int n); #endif