#ifdef __vxworks #include #else #include #endif #ifndef HAL_UTILITIES_H #define HAL_UTILITIES_H extern "C" { extern const int32_t HAL_NO_WAIT; extern const int32_t HAL_WAIT_FOREVER; void delayTicks(int32_t ticks); void delayMillis(double ms); void delaySeconds(double s);} #endif