diff options
Diffstat (limited to 'meson/manual tests/8 timeout/sleepprog.c')
-rw-r--r-- | meson/manual tests/8 timeout/sleepprog.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meson/manual tests/8 timeout/sleepprog.c b/meson/manual tests/8 timeout/sleepprog.c new file mode 100644 index 000000000..8875e126a --- /dev/null +++ b/meson/manual tests/8 timeout/sleepprog.c @@ -0,0 +1,6 @@ +#include<unistd.h> + +int main(void) { + sleep(1000); + return 0; +} |