r663: This commit was generated by cvs2svn to compensate for changes in r662,
[cinelerra_cv.git] / libsndfile / src / GSM610 / gsm_destroy.c
blob661f66777107d04818499a1f2e437c5b971e1c67
1 /*
2 * Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
3 * Universitaet Berlin. See the accompanying file "COPYRIGHT" for
4 * details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
5 */
7 #include "gsm.h"
8 #include "config.h"
10 #ifdef HAS_STDLIB_H
11 # include <stdlib.h>
12 #else
13 # ifdef HAS_MALLOC_H
14 # include <malloc.h>
15 # else
16 extern void free();
17 # endif
18 #endif
20 void gsm_destroy (gsm S)
22 if (S) free((char *)S);