mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-03 03:39:27 +00:00
git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@1 3f6dc0c8-ddfe-455d-9043-3cd528dc4637
26 lines
568 B
C
26 lines
568 B
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.
|
|
*/
|
|
|
|
/* $Header: /sources/linphone/linphone/gsmlib/gsm_destroy.c,v 1.1.1.1 2001/11/19 19:50:12 smorlat Exp $ */
|
|
|
|
#include "gsm.h"
|
|
#include "config.h"
|
|
#include "proto.h"
|
|
|
|
#ifdef HAS_STDLIB_H
|
|
# include <stdlib.h>
|
|
#else
|
|
# ifdef HAS_MALLOC_H
|
|
# include <malloc.h>
|
|
# else
|
|
extern void free();
|
|
# endif
|
|
#endif
|
|
|
|
void gsm_destroy P1((S), gsm S)
|
|
{
|
|
if (S) free((char *)S);
|
|
}
|