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

This commit is contained in:
Chris Johns
2018-04-12 17:46:49 +10:00
parent 86e79d7955
commit f59d435d16
46 changed files with 1123 additions and 1124 deletions

View File

@@ -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
}