summaryrefslogtreecommitdiffstats
path: root/cpukit/libdl/rtl-rap.h
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2018-04-12 17:46:49 +1000
committerChris Johns <chrisj@rtems.org>2018-04-12 17:57:40 +1000
commitf59d435d16261b04f97e293ab075e79624caf11d (patch)
treed37bc351bc95541388740069541f605af71203ff /cpukit/libdl/rtl-rap.h
parenttestsuites/dl06: Add a test for RAP format. (diff)
downloadrtems-f59d435d16261b04f97e293ab075e79624caf11d.tar.bz2
libdl: Remove _t from all structures as this is reserved for the standards
Diffstat (limited to 'cpukit/libdl/rtl-rap.h')
-rw-r--r--cpukit/libdl/rtl-rap.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpukit/libdl/rtl-rap.h b/cpukit/libdl/rtl-rap.h
index e96f342cea..ae656c25ca 100644
--- a/cpukit/libdl/rtl-rap.h
+++ b/cpukit/libdl/rtl-rap.h
@@ -1,5 +1,5 @@
/*
- * COPYRIGHT (c) 2012 Chris Johns <chrisj@rtems.org>
+ * COPYRIGHT (c) 2012, 2018 Chris Johns <chrisj@rtems.org>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
@@ -30,7 +30,7 @@ extern "C" {
* @param obj The object being checked.
* @param fd The file descriptor.
*/
-bool rtems_rtl_rap_file_check (rtems_rtl_obj_t* obj, int fd);
+bool rtems_rtl_rap_file_check (rtems_rtl_obj* obj, int fd);
/**
* The RAP format load handler.
@@ -38,21 +38,21 @@ bool rtems_rtl_rap_file_check (rtems_rtl_obj_t* obj, int fd);
* @param obj The object to load.
* @param fd The file descriptor.
*/
-bool rtems_rtl_rap_file_load (rtems_rtl_obj_t* obj, int fd);
+bool rtems_rtl_rap_file_load (rtems_rtl_obj* obj, int fd);
/**
* The RAP format unload handler.
*
* @param obj The object to unload.
*/
-bool rtems_rtl_rap_file_unload (rtems_rtl_obj_t* obj);
+bool rtems_rtl_rap_file_unload (rtems_rtl_obj* obj);
/**
* The RAP format signature handler.
*
- * @return rtems_rtl_loader_format_t* The format's signature.
+ * @return rtems_rtl_loader_format* The format's signature.
*/
-rtems_rtl_loader_format_t* rtems_rtl_rap_file_sig (void);
+rtems_rtl_loader_format* rtems_rtl_rap_file_sig (void);
#ifdef __cplusplus
}