clish_shutdown.c 310 B

123456789101112131415161718
  1. /*
  2. * clish_shutdown.c
  3. */
  4. #include "private.h"
  5. #ifdef DMALLOC
  6. #include <dmalloc.h>
  7. #endif /* DMALLOC */
  8. /*--------------------------------------------------------- */
  9. void clish_shutdown(void)
  10. {
  11. #ifdef DMALLOC
  12. dmalloc_shutdown();
  13. #endif
  14. }
  15. /*--------------------------------------------------------- */