00001 /* 00002 * Copyright 1992 by Jutta Degener and Carsten Bormann, Technische 00003 * Universitaet Berlin. See the accompanying file "COPYRIGHT" for 00004 * details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE. 00005 */ 00006 00007 /* $Header$ */ 00008 00009 #include "gsm.h" 00010 #include "config.h" 00011 #include "proto.h" 00012 00013 #ifdef HAS_STDLIB_H 00014 # include <stdlib.h> 00015 #else 00016 # ifdef HAS_MALLOC_H 00017 # include <malloc.h> 00018 # else 00019 extern void free(); 00020 # endif 00021 #endif 00022 00023 void gsm_destroy P1((S), gsm S) 00024 { 00025 if (S) free((char *)S); 00026 }
1.5.5