home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / math / ols / matfree.c < prev    next >
C/C++ Source or Header  |  1993-07-28  |  403b  |  22 lines

  1. #include <stdlib.h>
  2. #include <stdio.h>
  3. #include "utils.h"
  4.  
  5. void free_matrix (float **M, int rl, int rh, int cl, int ch)
  6.      
  7. #include "matfree.inc"
  8.      
  9. void free_dmatrix (double **M, int rl, int rh, int cl, int ch)
  10. #include "matfree.inc"
  11.  
  12. void free_imatrix (int **M, int rl, int rh, int cl, int ch)
  13. #include "matfree.inc"
  14.  
  15. #ifdef TESTING
  16.      int main ()
  17. {
  18.   return 0;
  19. }
  20.  
  21. #endif
  22.