/* Copyright(c) 1986 Association of Universities for Research in Astronomy Inc. */ #define import_spp #define import_libc #define import_xnames #include /* FREE -- Free a block of storage previously allocated by malloc, calloc, ** or realloc. */ void free ( char *buf ) { XINT x_ptr, x_dtype = TY_CHAR; x_ptr = Memcptr (buf); MFREE (&x_ptr, &x_dtype); }