diff --git a/cpu/neo.c b/cpu/neo.c new file mode 100644 index 0000000..9b19ef7 --- /dev/null +++ b/cpu/neo.c @@ -0,0 +1,6 @@ +char* whatisyourname() { + char *res = calloc(256+1, sizeof(char)); + for (int i = 0; i < 256; ++i) + res[i] = '1'; + return res; +}