source: rtems/cpukit/rtems/src/rtemsobjectidapimaximum.c @ c86cc72

4.115
Last change on this file since c86cc72 was dcd0e4c8, checked in by Ralf Corsepius <ralf.corsepius@…>, on 06/18/10 at 04:22:24

2010-06-18 Ralf Corsépius <ralf.corsepius@…>

  • rtems/src/rtemsobjectidapimaximum.c: Remove OBJECTS_ITRON_API.
  • Property mode set to 100644
File size: 568 bytes
Line 
1/*
2 *  RTEMS Object Helper -- Get Greatest Valid API Number
3 *
4 *  COPYRIGHT (c) 1989-2008.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.rtems.com/license/LICENSE.
10 *
11 *  $Id$
12 */
13
14#ifdef HAVE_CONFIG_H
15#include "config.h"
16#endif
17
18#include <rtems/system.h>
19#include <rtems/score/object.h>
20#include <rtems/rtems/types.h>
21
22#undef rtems_object_id_api_maximum
23int rtems_object_id_api_maximum(void)
24{
25  return OBJECTS_APIS_LAST;
26}
Note: See TracBrowser for help on using the repository browser.