summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/rtemsobjectidapiminimum.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/rtems/src/rtemsobjectidapiminimum.c')
-rw-r--r--cpukit/rtems/src/rtemsobjectidapiminimum.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/cpukit/rtems/src/rtemsobjectidapiminimum.c b/cpukit/rtems/src/rtemsobjectidapiminimum.c
index f9af3914a6..55bb014136 100644
--- a/cpukit/rtems/src/rtemsobjectidapiminimum.c
+++ b/cpukit/rtems/src/rtemsobjectidapiminimum.c
@@ -20,15 +20,16 @@
#include "config.h"
#endif
-#include <rtems/score/objectimpl.h>
+#include <rtems/rtems/object.h>
-/*
- * This is implemented as a macro. This body is provided to support
- * bindings from non-C based languages.
- */
-int rtems_object_id_api_minimum(void);
+static int _RTEMS_Object_id_api_minimum( void )
+{
+ return rtems_object_id_api_minimum();
+}
+
+#undef rtems_object_id_api_minimum
-int rtems_object_id_api_minimum(void)
+int rtems_object_id_api_minimum( void )
{
- return OBJECTS_INTERNAL_API;
+ return _RTEMS_Object_id_api_minimum();
}