git: 9front

Download patch

ref: 9754248d915b32aa99485a7db579cc7736163ad1
parent: 73e30a402682338a9d4e9a0fa0cec6976d30722e
author: aiju <devnull@localhost>
date: Sun Sep 28 18:42:11 EDT 2014

games/gba: remove bogus file

--- a/sys/src/games/gba/test.c
+++ /dev/null
@@ -1,15 +1,0 @@
-#include <u.h>
-#include <libc.h>
-
-void main()
-{
-	int fd;
-	Dir *d;
-	int n, i;
-	
-	fd = open(".", OREAD);
-	n = dirreadall(fd, &d);
-	for(i = 0; i < n; i++)
-		if(d[i].name[0] == '\xef')
-			remove(d[i].name);
-}
\ No newline at end of file
--