aboutsummaryrefslogtreecommitdiffstats
path: root/sleep.c
blob: e27dce3364fc7d1f521d082a967b773c8a3a9241 (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

int main(int argc, char *argv[])
{
  if (argc > 1)
    sleep(atoi(argv[1]));
}