Mercurial > hg > audiostuff
annotate intercom/gsm/gsm_dest.c @ 6:22a74b01a099 default tip
implement more meaningful test program
| author | Peter Meerwald <pmeerw@cosy.sbg.ac.at> |
|---|---|
| date | Fri, 25 Jun 2010 16:14:50 +0200 |
| parents | 13be24d74cd2 |
| children |
| rev | line source |
|---|---|
| 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 } |
