This commit is contained in:
Gerolf Ziegenhain 2016-10-04 17:52:49 +02:00
parent a5b7aed310
commit c60842a89f
3 changed files with 5 additions and 4 deletions

View File

@ -133,9 +133,6 @@ error:
fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
return err;
}
void msleep(int d){
usleep(d*1000);
}
int beep(double freq_hz, double duration_sec)
{

View File

@ -97,3 +97,7 @@ void *get_in_addr(struct sockaddr *sa)
void msleep(int d){
usleep(d*1000);
}

View File

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