moved files around

This commit is contained in:
ejcoumans
2006-05-25 19:18:29 +00:00
commit e061ec1ebf
1024 changed files with 349445 additions and 0 deletions

40
Extras/ode/tools/rm.c Normal file
View File

@@ -0,0 +1,40 @@
/*
this is a simple replacement for the windows command line 'del' command.
this is more convenient to use in the ODE makefile because of the following
differences from 'del' :
* filenames may contain forward slashes.
* wildcard expansion is not performed.
* it is called 'rm', just like in unix.
*/
#include <stdio.h>
#include <stdlib.h>
int main (int argc, char **argv)
{
int i;
for (i=1; i<argc; i++) unlink (argv[i]);
return 0;
}