std.c 91 B

123456789
  1. #include <stdlib.h>
  2. #include "rubiks.h"
  3. void xfree(void *ptr)
  4. {
  5. if (ptr)
  6. free(ptr);
  7. }