diff options
author | rpj <rpj> | 2002-02-07 11:42:26 +0000 |
---|---|---|
committer | rpj <rpj> | 2002-02-07 11:42:26 +0000 |
commit | 14118935d2d6863a4746223d8e22c2e58ffebab5 (patch) | |
tree | bfb63da88b1ea6e92a3db8601ecd43454683385c /nonportable.c | |
parent | 006bf1acd58ea44c44d7de5a70f3fc6f5e040ac7 (diff) |
pthread_delay_np: Add missing "return(0)".
Diffstat (limited to 'nonportable.c')
-rw-r--r-- | nonportable.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nonportable.c b/nonportable.c index 0d97300..c465d57 100644 --- a/nonportable.c +++ b/nonportable.c @@ -122,6 +122,7 @@ pthread_delay_np (struct timespec * interval) pthread_testcancel(); Sleep(0); pthread_testcancel(); + return (0); } /* convert secs to millisecs */ |