diff options
author | Adam Jackson <ajax@theobromine.nwnk.net> | 2006-07-20 17:33:13 -0400 |
---|---|---|
committer | Adam Jackson <ajax@theobromine.nwnk.net> | 2006-07-20 17:33:13 -0400 |
commit | 985c34bf06af70a7296db8307899a17347a25558 (patch) | |
tree | b52bd1759bd1893376d9ba8979c04a7c7300df44 /os | |
parent | 84683f19b4d1c712281036bcabf8dc623e64b26a (diff) |
Remove the DDXTIME conditional, for being unused.
Diffstat (limited to 'os')
-rw-r--r-- | os/utils.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/os/utils.c b/os/utils.c index de3e7c9ec..3900bffa2 100644 --- a/os/utils.c +++ b/os/utils.c @@ -545,7 +545,6 @@ GiveUp(int sig) errno = olderrno; } -#ifndef DDXTIME _X_EXPORT CARD32 GetTimeInMillis(void) { @@ -554,7 +553,6 @@ GetTimeInMillis(void) X_GETTIMEOFDAY(&tp); return(tp.tv_sec * 1000) + (tp.tv_usec / 1000); } -#endif _X_EXPORT void AdjustWaitForDelay (pointer waitTime, unsigned long newdelay) |