mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-08 12:56:48 +00:00
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;
|
|
}
|