diff options
author | Abhijit Menon-Sen <ams@wiw.org> | 2001-07-20 06:48:50 +0530 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-07-20 06:23:36 +0000 |
commit | 8db210d5f039c2bf95dadfa60565f509cde90fb8 (patch) | |
tree | 73118dd5abfc22c13265845c32699189e49b8a38 /ext/Time | |
parent | 8c86f8d4f3dd7a01e72711367292e25f2fddec91 (diff) | |
download | perl-8db210d5f039c2bf95dadfa60565f509cde90fb8.tar.gz |
prototype for Time::HiRes::sleep()
Message-Id: <20010720011850.A19650@lustre.dyn.wiw.org>
(Private e-mail)
p4raw-id: //depot/perl@11414
Diffstat (limited to 'ext/Time')
-rw-r--r-- | ext/Time/HiRes/HiRes.xs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/Time/HiRes/HiRes.xs b/ext/Time/HiRes/HiRes.xs index 77ce9e28be..4087455129 100644 --- a/ext/Time/HiRes/HiRes.xs +++ b/ext/Time/HiRes/HiRes.xs @@ -277,6 +277,7 @@ usleep(useconds) void sleep(...) + PROTOTYPE: ;$ CODE: if (items > 0) usleep((int)(SvNV(ST(0)) * 1000000)); |