sem_destroy.c 67 B

123456
  1. #include <semaphore.h>
  2. int sem_destroy(sem_t *sem)
  3. {
  4. return 0;
  5. }