hardhat
public c v1 · immutable#include <pspkernel.h>#include <stdio.h>#include <time.h>PSP_MODULE_INFO("GetTime", 0, 1, 1);PSP_MAIN_THREAD_ATTR(THREAD_ATTR_USER);PSP_HEAP_SIZE_KB(-2000);int main(int argc,char **argv){ time_t now=time(NULL); printf("Got time stamp of %u\n",(unsigned)now); return 0;}