Skip to content

Instantly share code, notes, and snippets.

@seiji
Created November 29, 2012 05:38
Show Gist options
  • Save seiji/4167028 to your computer and use it in GitHub Desktop.
Save seiji/4167028 to your computer and use it in GitHub Desktop.
usleep.c
#include <unistd.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
if (argc <= 1)
usleep(1);
else
usleep(atol(argv[1]));
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment