summaryrefslogtreecommitdiffstats
path: root/cpukit/sapi/src/posixapi.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/sapi/src/posixapi.c')
-rw-r--r--cpukit/sapi/src/posixapi.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/cpukit/sapi/src/posixapi.c b/cpukit/sapi/src/posixapi.c
index b3839ddd84..d1de103f18 100644
--- a/cpukit/sapi/src/posixapi.c
+++ b/cpukit/sapi/src/posixapi.c
@@ -19,35 +19,11 @@
#include "config.h"
#endif
-#define POSIX_API_INIT
-
-#include <rtems/system.h> /* include this before checking RTEMS_POSIX_API */
-
-#include <rtems/config.h>
#include <rtems/posix/posixapi.h>
-#ifdef RTEMS_POSIX_API
-#include <sys/types.h>
-#include <mqueue.h>
-#include <rtems/config.h>
-#include <rtems/posix/config.h>
-#include <rtems/posix/priorityimpl.h>
-#include <rtems/posix/psignalimpl.h>
-#endif
-
void _POSIX_Fatal_error( POSIX_Fatal_domain domain, int eno )
{
uint32_t code = ( domain << 8 ) | ( ( uint32_t ) eno & 0xffU );
_Terminate( INTERNAL_ERROR_POSIX_API, false, code );
}
-
-void _POSIX_API_Initialize(void)
-{
- /*
- * If there are any type size assumptions in the POSIX API, this is
- * the appropriate place to place them.
- *
- * Currently, there are no none type size assumptions.
- */
-}