games/gba: remove bogus file

This commit is contained in:
aiju 2014-09-28 22:42:11 +02:00
parent 05bdd09bc3
commit c8cf0cee47

View file

@ -1,15 +0,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);
}