add directory study

This commit is contained in:
gohigh
2024-02-19 00:25:23 -05:00
parent b1306b38b1
commit f3774e2f8c
4001 changed files with 2285787 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
/* sleep - suspend a process for x sec Author: Andy Tanenbaum */
main(argc, argv)
int argc;
char *argv[];
{
register seconds;
register char c;
seconds = 0;
if (argc != 2) {
std_err("Usage: sleep time\n");
exit(1);
}
while (c = *(argv[1])++) {
if (c < '0' || c > '9') {
std_err("sleep: bad arg\n");
exit(1);
}
seconds = 10 * seconds + (c - '0');
}
/* Now sleep. */
sleep(seconds);
exit(0);
}