2
|
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 */
|
|
6
|
|
7 /* $Header: /home/kbs/jutta/src/gsm/gsm-1.0/src/RCS/gsm_destroy.c,v 1.1 1992/10/28 00:15:50 jutta Exp $ */
|
|
8
|
|
9 #include <stdlib.h>
|
|
10 #include "private.h"
|
|
11 #include "gsm.h"
|
|
12 #include "proto.h"
|
|
13
|
|
14 void gsm_destroy P1((S), gsm S)
|
|
15 {
|
|
16 if (S)
|
|
17 free((char *) S);
|
|
18 }
|