aboutsummaryrefslogtreecommitdiffstats
path: root/tinysleep.c
diff options
context:
space:
mode:
Diffstat (limited to 'tinysleep.c')
-rw-r--r--tinysleep.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/tinysleep.c b/tinysleep.c
new file mode 100644
index 0000000..5c00a59
--- /dev/null
+++ b/tinysleep.c
@@ -0,0 +1,9 @@
+/* See LICENSE file for copyright and license details. */
+#include <unistd.h>
+
+int
+main(void)
+{
+ usleep(50000L);
+ return 0;
+}