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

         
  




                                           
                            



                                                           
                                         





                    

                              



                                                                      
                       













                                  







                                               
 
/**
 *  @file
 *
 *  @brief Build Thirty-Two Bit Object Name
 *  @ingroup ClassicClassInfo
 */

/*
 *  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/types.h>

/*
 *  Undefine since this is normally a macro and we want a real body in
 *  the library for other language bindings.
 */
#undef rtems_build_name

/*
 *  Prototype it to avoid warnings
 */
rtems_name rtems_build_name(
  char C1,
  char C2,
  char C3,
  char C4
);

/*
 *  Now define a real body
 */
rtems_name rtems_build_name(
  char C1,
  char C2,
  char C3,
  char C4
)
{
  return _Objects_Build_name( C1, C2, C3, C4 );
}