switch-examples/templates/simple/source/main.c
2017-09-16 22:01:48 -04:00

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;
}