Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
suricodes
/
hindi-sindhi-docker
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
hindi-sindhi-docker
/
mosesdecoder
/
xmlrpc-c-1.51.06
/
lib
/
libutil
/
sleep.c
suricodes
Upload folder using huggingface_hub
fd49381
verified
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
361 Bytes
#
include
"xmlrpc_config.h"
#
include
"bool.h"
#
include
"xmlrpc-c/sleep_int.h"
#
if
MSVCRT
#
define
WIN32_LEAN_AND_MEAN
#
include
<windows.h>
#
include
<process.h>
#
else
#
include
<unistd.h>
#
endif
void
xmlrpc_millisecond_sleep
(
unsigned
int
const
milliseconds)
{
#
if
MSVCRT
SleepEx(milliseconds,
true
);
#
else
usleep(milliseconds *
1000
);
#
endif
}