Revert revision 6464. _POSIX_MONOTONIC_CLOCK is not used in that way.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6455 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Glenn Rice 2010-11-21 21:31:37 +00:00
parent 92fe490270
commit 222c2d1297
2 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@
//for (clock_gettime|gettimeofday) and struct time(spec|val)
#include <unistd.h>
#include <time.h>
#if !defined _POSIX_MONOTONIC_CLOCK || _POSIX_MONOTONIC_CLOCK < 200112L
#if !defined(_POSIX_TIMERS) || _POSIX_TIMERS == 0 || !defined(_POSIX_MONOTONIC_CLOCK)
#define USE_GETTIMEOFDAY
#include <sys/time.h>
#endif

View File

@ -23,7 +23,7 @@
#include <sys/timeb.h>
#else
#include <unistd.h>
#if !defined _POSIX_MONOTONIC_CLOCK || _POSIX_MONOTONIC_CLOCK < 200112L
#if !defined(_POSIX_TIMERS) || _POSIX_TIMERS == 0 || !defined(_POSIX_MONOTONIC_CLOCK)
#define USE_GETTIMEOFDAY
#include <sys/time.h>
#endif