blob: deeca27fae174dbe588d03102cfcf6fe28651318 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* A small dummy process that just uses up a process slot in the long
* runtime test */
#include <stdlib.h>
int main(int argc, char* argv[])
{
if (argc != 2)
return 0;
return atoi(argv[1]);
}
|