source: rtems/cpukit/rtems/src/rtemsbuildname.c @ 6b5f22dc

Last change on this file since 6b5f22dc was 6b5f22dc, checked in by Sebastian Huber <sebastian.huber@…>, on 11/26/20 at 10:45:47

rtems: Canonicalize Doxygen @file comments

Use common phrases for the file brief descriptions.

Update #3706.

  • Property mode set to 100644
File size: 945 bytes
Line 
1/**
2 * @file
3 *
4 * @ingroup RTEMSImplClassicObject
5 *
6 * @brief This source file contains the implementation of
7 *   rtems_build_name() as a binding for languages other than C/C++.
8 */
9
10/*
11 *  COPYRIGHT (c) 1989-2013.
12 *  On-Line Applications Research Corporation (OAR).
13 *
14 *  The license and distribution terms for this file may be
15 *  found in the file LICENSE in this distribution or at
16 *  http://www.rtems.org/license/LICENSE.
17 */
18
19#ifdef HAVE_CONFIG_H
20#include "config.h"
21#endif
22
23#include <rtems/rtems/types.h>
24
25/*
26 *  Undefine since this is normally a macro and we want a real body in
27 *  the library for other language bindings.
28 */
29#undef rtems_build_name
30
31/*
32 *  Prototype it to avoid warnings
33 */
34rtems_name rtems_build_name(
35  char C1,
36  char C2,
37  char C3,
38  char C4
39);
40
41/*
42 *  Now define a real body
43 */
44rtems_name rtems_build_name(
45  char C1,
46  char C2,
47  char C3,
48  char C4
49)
50{
51  return _Objects_Build_name( C1, C2, C3, C4 );
52}
Note: See TracBrowser for help on using the repository browser.