A clone of btpd with my configuration changes.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

misc.h 160 B

1234567891011
  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