A clone of btpd with my configuration changes.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

12 wiersze
160 B

  1. #ifndef MISC_H
  2. #define MISC_H
  3. struct timezone;
  4. struct timeval;
  5. #ifndef HAVE_GETTIMEOFDAY
  6. int gettimeofday(struct timeval *,struct timezone *);
  7. #endif
  8. #endif