source: rtems/cpukit/libdl/rtl-obj-fwd.h @ c130387

5
Last change on this file since c130387 was d4edbdbc, checked in by Sebastian Huber <sebastian.huber@…>, on 03/20/15 at 13:09:26

Replace www.rtems.com with www.rtems.org

  • Property mode set to 100644
File size: 776 bytes
Line 
1/*
2 *  COPYRIGHT (c) 2012 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_OBJ_FWD_H_)
17#define _RTEMS_RTL_OBJ_FWD_H_
18
19#ifdef __cplusplus
20extern "C" {
21#endif /* __cplusplus */
22
23/**
24 * The forward declaration of the obj section structure.
25 */
26struct rtems_rtl_obj_sect_s;
27typedef struct rtems_rtl_obj_sect_s rtems_rtl_obj_sect_t;
28
29/**
30 * The forward declaration of the obj structure.
31 */
32struct rtems_rtl_obj_s;
33typedef struct rtems_rtl_obj_s rtems_rtl_obj_t;
34
35#ifdef __cplusplus
36}
37#endif /* __cplusplus */
38
39#endif
Note: See TracBrowser for help on using the repository browser.