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 >
Wrap
C/C++ Source or Header
|
1993-07-28
|
403b
|
22 lines
#include <stdlib.h>
#include <stdio.h>
#include "utils.h"
void free_matrix (float **M, int rl, int rh, int cl, int ch)
#include "matfree.inc"
void free_dmatrix (double **M, int rl, int rh, int cl, int ch)
#include "matfree.inc"
void free_imatrix (int **M, int rl, int rh, int cl, int ch)
#include "matfree.inc"
#ifdef TESTING
int main ()
{
return 0;
}
#endif