gallium: Fix mismatching prototypes.

This commit is contained in:
José Fonseca 2008-04-15 12:35:00 +09:00
parent a175e15f20
commit 0b995b44e5
2 changed files with 2 additions and 2 deletions

View file

@ -133,7 +133,7 @@ util_time_timeout(const struct util_time *start,
#ifdef WIN32
void util_time_usleep(unsigned usecs)
void util_time_sleep(unsigned usecs)
{
LONGLONG start, curr, end;

View file

@ -87,7 +87,7 @@ util_time_timeout(const struct util_time *start,
#ifndef WIN32
#define util_time_sleep usleep
#else
int
void
util_time_sleep(unsigned usecs);
#endif