diff options
author | Chris Robinson <[email protected]> | 2018-11-26 23:45:04 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-11-26 23:45:04 -0800 |
commit | 2530370ff29009fccad472c9e9194ebdd561a398 (patch) | |
tree | a3a41655bb1b2c37a91d10f77f112d36d726af0d /examples/common/alhelpers.h | |
parent | d7d99adc915583416dd8c70491ec7fc4ac71a543 (diff) |
Avoid relying on struct timespec
Diffstat (limited to 'examples/common/alhelpers.h')
-rw-r--r-- | examples/common/alhelpers.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/examples/common/alhelpers.h b/examples/common/alhelpers.h index 14edf5d9..4193e86f 100644 --- a/examples/common/alhelpers.h +++ b/examples/common/alhelpers.h @@ -1,8 +1,6 @@ #ifndef ALHELPERS_H #define ALHELPERS_H -#include <time.h> - #include "AL/alc.h" #include "AL/al.h" #include "AL/alext.h" @@ -19,14 +17,7 @@ int InitAL(char ***argv, int *argc); void CloseAL(void); /* Cross-platform timeget and sleep functions. */ -#ifndef HAVE_STRUCT_TIMESPEC -struct timespec { - time_t tv_sec; - long tv_nsec; -}; -#endif -#define AL_TIME_UTC 1 -int altimespec_get(struct timespec *ts, int base); +unsigned int altime_get(void); void al_nssleep(unsigned long nsec); #ifdef __cplusplus |