16 lines
209 B
C
16 lines
209 B
C
|
|
#include <stdio.h>
|
||
|
|
#include <errno.h>
|
||
|
|
#include <stdlib.h>
|
||
|
|
#include <dirent.h>
|
||
|
|
#include <libndls.h>
|
||
|
|
|
||
|
|
void util_stuff();
|
||
|
|
|
||
|
|
void util_stuff(){
|
||
|
|
|
||
|
|
printf("Hello World!\n");
|
||
|
|
|
||
|
|
|
||
|
|
wait_key_pressed();
|
||
|
|
return;
|
||
|
|
}
|