diff options
author | rpj <rpj> | 2011-03-06 15:01:05 +0000 |
---|---|---|
committer | rpj <rpj> | 2011-03-06 15:01:05 +0000 |
commit | a39dab139b7c301ffd5a5592c292123c54e686cd (patch) | |
tree | 73aeb7a868f7c075de9ec43344d17d21f99763f9 /ptw32_relmillisecs.c | |
parent | 1183e5acfa10c7bda1dc39034d6e2fa6dec6016f (diff) |
More 64 bit cast fixups
Diffstat (limited to 'ptw32_relmillisecs.c')
-rw-r--r-- | ptw32_relmillisecs.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ptw32_relmillisecs.c b/ptw32_relmillisecs.c index c9d39f3..a82bfb7 100644 --- a/ptw32_relmillisecs.c +++ b/ptw32_relmillisecs.c @@ -41,7 +41,10 @@ #endif -INLINE DWORD +#ifdef PTW32_BUILD_INLINED +INLINE +#endif /* PTW32_BUILD_INLINED */ +DWORD ptw32_relmillisecs (const struct timespec * abstime) { const int64_t NANOSEC_PER_MILLISEC = 1000000; |