string_free.c 244 B

1234567891011121314
  1. /*
  2. * string_free.c
  3. */
  4. #include "private.h"
  5. #include <stdlib.h>
  6. /*--------------------------------------------------------- */
  7. void
  8. lub_string_free(char *ptr)
  9. {
  10. free(ptr);
  11. }
  12. /*--------------------------------------------------------- */