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

  1. #include <stdlib.h>
  2. #include <stdio.h>
  3. #include "utils.h"
  4.  
  5. void 
  6. free_vector (float *V, int l, int h)
  7. {
  8.   free (V + l);
  9. }
  10.  
  11. void 
  12. free_dvector (double *V, int l, int h)
  13. {
  14.   free (V + l);
  15. }
  16.  
  17. void 
  18. free_ivector (int *V, int l, int h)
  19. {
  20.   free (V + l);
  21. }
  22.