libc/include/sys/config.h: Undef _REENT_SMALL for RTEMS on MicroBlaze

RTEMS does not expect _REENT_SMALL.
This commit is contained in:
Alex White 2021-07-21 13:00:34 -05:00 committed by Corinna Vinschen
parent bf8f2a95df
commit 44a3966577
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@
#endif
/* Configure small REENT structure for Xilinx MicroBlaze platforms */
#if defined (__MICROBLAZE__)
#if defined (__MICROBLAZE__) && !defined(__rtems__)
#ifndef _REENT_SMALL
#define _REENT_SMALL
#endif