Skip to content

Instantly share code, notes, and snippets.

@val314159
Created March 29, 2018 18:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save val314159/6b6a36819f425eb332013a0878c7d6f1 to your computer and use it in GitHub Desktop.
Save val314159/6b6a36819f425eb332013a0878c7d6f1 to your computer and use it in GitHub Desktop.
usleep, what every unix should have
/*
cc -o usleep usleep.c && cp usleep /usr/local/bin
*/
#include <unistd.h>
#include <stdlib.h>
int main(int c,char*v[]){
usleep(atoi(v[1]));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment