source: rtems/cpukit/include/rtems/rtl/rtl-fwd.h @ f59d435d

5
Last change on this file since f59d435d was f59d435d, checked in by Chris Johns <chrisj@…>, on 04/12/18 at 07:46:49

libdl: Remove _t from all structures as this is reserved for the standards

  • Property mode set to 100644
File size: 618 bytes
Line 
1/*
2 *  COPYRIGHT (c) 2012, 2018 Chris Johns <chrisj@rtems.org>
3 *
4 *  The license and distribution terms for this file may be
5 *  found in the file LICENSE in this distribution or at
6 *  http://www.rtems.org/license/LICENSE.
7 */
8/**
9 * @file
10 *
11 * @ingroup rtems_rtl
12 *
13 * @brief RTEMS Run-Time Linker ELF Headers
14 */
15
16#if !defined (_RTEMS_RTL_FWD_H_)
17#define _RTEMS_RTL_FWD_H_
18
19#ifdef __cplusplus
20extern "C" {
21#endif /* __cplusplus */
22
23/**
24 * The forward declaration of the obj structure.
25 */
26struct rtems_rtl_data;
27typedef struct rtems_rtl_data rtems_rtl_data;
28
29#ifdef __cplusplus
30}
31#endif /* __cplusplus */
32
33#endif
Note: See TracBrowser for help on using the repository browser.