summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/unix/posix/startup/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/unix/posix/startup/main.c')
-rw-r--r--c/src/lib/libbsp/unix/posix/startup/main.c30
1 files changed, 0 insertions, 30 deletions
diff --git a/c/src/lib/libbsp/unix/posix/startup/main.c b/c/src/lib/libbsp/unix/posix/startup/main.c
deleted file mode 100644
index 37e0116bdd..0000000000
--- a/c/src/lib/libbsp/unix/posix/startup/main.c
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * Description:
- * This file exists solely to (try to) ensure RTEMS is initialized.
- * It is not to be used in systems which want C++ support.
- *
- * $Id$
- */
-
-#include <bsp.h>
-#include <stdio.h>
-#include <stdlib.h>
-
-/*
- * RTEMS program name
- * Probably not used by anyone, but it is nice to have it.
- * Actually the UNIX version of CPU_INVOKE_DEBUGGER will probably
- * need to use it
- */
-
-char *rtems_progname;
-
-int main(
- int argc,
- char **argv
-)
-{
- boot_card(0);
-
- return 0;
-}