Skip to content
Snippets Groups Projects
Verified Commit cb66cb39 authored by Nirbheek Chauhan's avatar Nirbheek Chauhan Committed by Mark Harris
Browse files

silk: Fix incorrect ifdef in debug.c


Signed-off-by: default avatarMark Harris <mark.hsj@gmail.com>
parent 6bae366f
No related branches found
No related tags found
No related merge requests found
......@@ -37,14 +37,13 @@ POSSIBILITY OF SUCH DAMAGE.
#if SILK_TIC_TOC
#ifdef _WIN32
#if (defined(_WIN32) || defined(_WINCE))
#include <windows.h> /* timer */
#else /* Linux or Mac*/
#include <sys/time.h>
#endif
#ifdef _WIN32
unsigned long silk_GetHighResolutionTime(void) /* O time in usec*/
{
/* Returns a time counter in microsec */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment