gsm_destroy.c 573 B

1234567891011121314151617181920212223242526
  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. /* $Header: /tmp_amd/presto/export/kbs/jutta/src/gsm/RCS/gsm_destroy.c,v 1.3 1994/11/28 19:52:25 jutta Exp $ */
  7. #include "gsm.h"
  8. #include "config.h"
  9. #include "proto.h"
  10. #ifdef HAS_STDLIB_H
  11. # include <stdlib.h>
  12. #else
  13. # ifdef HAS_MALLOC_H
  14. # include <malloc.h>
  15. # else
  16. extern void free();
  17. # endif
  18. #endif
  19. void gsm_destroy P1((S), gsm S)
  20. {
  21. if (S) free((char *)S);
  22. }