*fixed a compile error with gcc.

This commit is contained in:
Wang Renxin 2016-02-15 23:15:19 +08:00
parent 22eeabb807
commit e68120a8b2

View File

@ -1094,7 +1094,7 @@ static int_t _ticks(void) {
return (int_t)(ts.tv_sec * 1000 + ts.tv_nsec / 1000000);
}
#elif defined defined __GNUC__
#elif defined __GNUC__
static int_t _ticks(void) {
struct timespec ts;