This commit is contained in:
Gerolf Ziegenhain 2016-10-04 18:01:29 +02:00
parent 05ad58cb09
commit ff773f1f4e
2 changed files with 1 additions and 3 deletions

View File

@ -96,8 +96,6 @@ void *get_in_addr(struct sockaddr *sa)
return &(((struct sockaddr_in6*)sa)->sin6_addr); return &(((struct sockaddr_in6*)sa)->sin6_addr);
} }
void msleep(int d) void msleep(int d)
{ {
usleep(d*1000); usleep(d*1000);

View File

@ -2,4 +2,4 @@ void current_utc_time(struct timespec *ts);
long fastclock(void); long fastclock(void);
int kbhit (void); int kbhit (void);
void msleep(int d); void msleep(int d);
void *get_in_addr(struct sockaddr *sa); extern void *get_in_addr(struct sockaddr *sa);