12 lines
111 B
C
12 lines
111 B
C
|
// SPDX-License-Identifier: MPL-2.0
|
||
|
|
||
|
#include <unistd.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
alarm(3);
|
||
|
while (1) {
|
||
|
}
|
||
|
return 0;
|
||
|
}
|