2024-06-28 20:33:21 +08:00

12 lines
111 B
C

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