Move freeldr to reactos\boot\freeldr.
[reactos.git] / freeldr / tools / hosttype.c
diff --git a/freeldr/tools/hosttype.c b/freeldr/tools/hosttype.c
deleted file mode 100644 (file)
index ff5c534..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-/**
- *
- * hosttype.c
- * Copyright (C) 2002 by Brian Palmer <brianp@sginet.com>
- *
- */
-
-#include <stdio.h>
-
-int main(int argc, char *argv[])
-{
-#if defined (__DJGPP__)
-       printf("dos\n");
-#elif defined (__WIN32__)
-       printf("win32\n");
-#else
-       printf("linux\n");
-#endif // defined __DJGPP__
-
-       return 0;
-}