summaryrefslogtreecommitdiff
path: root/cpukit/libcsupport/src/getreentglobal.c (follow)
AgeCommit message (Collapse)Author
2020-04-16Canonicalize config.h includeSebastian Huber
Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif
2018-11-07config: Include <rtems.h> for RTEMS_NEWLIBSebastian Huber
2018-11-07config: Fix CONFIGURE_DISABLE_NEWLIB_REENTRANCYSebastian Huber
Move the __getreent() variant using the global reentrancy structure to librtemscpu.a. This avoids a definition of __getreent() in the configuration module if CONFIGURE_DISABLE_NEWLIB_REENTRANCY is defined. This avoids all the dependencies which would be exposed by a reference to the global reentrancy structure. This change is only possible since the default configuration moved to librtemsdefaultconfig.a recently.