ref: 2f0ef325d4588af7a70453547fa6b4d0b703818e
dir: /src/libgsm/gsm_destroy.c/
/* * Copyright 1992 by Jutta Degener and Carsten Bormann, Technische * Universitaet Berlin. See the accompanying file "COPYRIGHT" for * details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE. */ #include "gsm.h" #include <stdlib.h> void gsm_destroy (gsm S) { free((char *)S); }