summaryrefslogblamecommitdiffstats
path: root/cpukit/rtems/src/rtemsobjectidapiminimum.c
blob: 55bb01413604b951e9c0e20fcfa4b0eb585fefdc (plain) (tree)
1
2
3
4
5
6
7
8
9
10
   
        
  



                                                                               


   
                            



                                                           
                                         





                    
                               
 





                                               
 
                                       
 
                                        
 
/**
 * @file
 *
 * @ingroup RTEMSImplClassicObject
 *
 * @brief This source file contains the implementation of
 *   rtems_object_id_api_minimum() as a binding for languages other than C/C++.
 */

/*
 *  COPYRIGHT (c) 1989-2013.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.org/license/LICENSE.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <rtems/rtems/object.h>

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 )
{
  return _RTEMS_Object_id_api_minimum();
}