blob: d7623da61e3ae50ca5ebab8f557117942e0cdc0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int subroutine(void* ptr, int d)
{
return (int)ptr+d+1;
}
int main(int argc, char** argv)
{
DWORD dwWait = 2;
if (argc > 1 && argc != 2) {
printf("usage: %s [WAIT_TIME]\n", argv[0]);
abort();
} else if (argc == 2) {
errno = 0;
dwWait = strtoul(argv[1], NULL, 10);
if (errno != 0)
dwWait = 2;
}
printf("%s", "Hi, I'm a useless dummy like the guy who coded me.\n");
printf("Waiting %lu seconds ..\n", dwWait);
sleep(dwWait);
printf("%s", "Dummy done.\n");
if (subroutine(NULL, 1) == 2) {
return 0;
} else return 1;
}
|