You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
naka/src/main.c

17 lines
225 B

// *naka* - find a file within another file
#include <stdio.h>
#include <stdlib.h>
#include <ints.h>
#include <macros.h>
int main(int argc, char** argv)
{
IGNORE(argc);
IGNORE(argv);
INFO("Hello world!");
return 0;
}