/* Collection of code snippets by Arne Vajhøj */
/* (from articles on eksperten.dk / vajhoej.dk written sometime between 2004 and now) */
#include <unistd.h>

int usleep_(int *usecs)
{
    usleep(*usecs);
}
