forked from Imagelibrary/rtems
libdl: Remove _t from all structures as this is reserved for the standards
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user