- Timestamp:
- Oct 11, 2003, 1:33:59 AM (22 years ago)
- File:
-
- 1 edited
-
trunk/src/emx/src/lib/sys/clock.c (modified) (2 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/src/lib/sys/clock.c
-
Property cvs2svn:cvs-rev
changed from
1.3to1.4
r826 r827 3 3 #include "libc-alias.h" 4 4 #include <os2emx.h> 5 5 6 #include <emx/syscalls.h> 6 7 #include "syscalls.h" … … 10 11 will wrap around after 49 days. */ 11 12 12 long long _STD(clock)(void)13 (void) 13 14 { 14 ULONG val_ms;15 long longresult;15 ULONG val_ms; 16 result; 16 17 17 _sys_get_clock(&val_ms);18 result = (long long)((val_ms - _sys_clock0_ms) / 10);19 return result;18 (&val_ms); 19 ; 20 return result; 20 21 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
