12345678910111213141516171819202122232425262728293031323334 |
- #include <errno.h>
- struct globals;
- #ifndef GCC_COMBINE
- struct globals *ptr_to_globals;
- #ifdef __GLIBC__
- int *bb_errno;
- #endif
- #else
- struct globals *const ptr_to_globals __attribute__ ((section (".data")));
- #ifdef __GLIBC__
- int *const bb_errno __attribute__ ((section (".data")));
- #endif
- #endif
|