source: trunk/libs/newlib/src/newlib/libc/machine/spu/impure.c @ 444

Last change on this file since 444 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 460 bytes
Line 
1#include <reent.h>
2
3/* Note that there is a copy of this in sys/reent.h.  */
4#ifndef __ATTRIBUTE_IMPURE_PTR__
5#define __ATTRIBUTE_IMPURE_PTR__
6#endif
7
8#ifndef __ATTRIBUTE_IMPURE_DATA__
9#define __ATTRIBUTE_IMPURE_DATA__
10#endif
11
12struct _reent __ATTRIBUTE_IMPURE_DATA__ _impure_data = _REENT_INIT(_impure_data);
13struct _reent *__ATTRIBUTE_IMPURE_PTR__ _impure_ptr = &_impure_data;
14struct _reent *const __ATTRIBUTE_IMPURE_PTR__ _global_impure_ptr = &_impure_data;
Note: See TracBrowser for help on using the repository browser.