mirror of
https://github.com/switchbrew/switch-examples.git
synced 2025-06-21 21:32:40 +02:00
13 lines
149 B
C
13 lines
149 B
C
#include <string.h>
|
|
#include <stdio.h>
|
|
|
|
#include <switch.h>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
svcSleepThread(5000000000);//Delay 5s
|
|
|
|
return 0;
|
|
}
|
|
|