diff options
author | José Fonseca <[email protected]> | 2009-04-27 17:13:40 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2009-04-27 17:13:40 +0100 |
commit | 3ebcf2dd7489ecaf19a7167892069c4d58c285d8 (patch) | |
tree | f7713e2bb26f6ce770e04fd3683cb144bc28b99c /src | |
parent | dc9705d12d162ba6d087eb762e315de9f97bc456 (diff) |
util: Remove unix includes.
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/auxiliary/util/u_time.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/gallium/auxiliary/util/u_time.c b/src/gallium/auxiliary/util/u_time.c index 8e167d3c42f..5268cbf79ce 100644 --- a/src/gallium/auxiliary/util/u_time.c +++ b/src/gallium/auxiliary/util/u_time.c @@ -218,10 +218,6 @@ void util_time_sleep(unsigned usecs) end < start && (curr < end || start <= curr)); } #elif defined(PIPE_SUBSYSTEM_WINDOWS_USER) -#include <unistd.h> -#include <fcntl.h> - - void util_time_sleep(unsigned usecs) { Sleep((usecs + 999)/ 1000); |