Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2008-04-16 22:46:20 +0400
committerJeff Johnston <jjohnstn@redhat.com>2008-04-16 22:46:20 +0400
commitc2bd84bc277805a697189567af2caec7759e2751 (patch)
tree3ac42838b947aefeb72d4fbcaac895ad780092ca /newlib/libc
parentff5007dfdd321435adb1cc3abeb0120af2d564f3 (diff)
2008-04-16 Patrick Mansfield <patmans@us.ibm.com>
* libc/machine/spu/impure.c: Add missing underscore to impure_data.
Diffstat (limited to 'newlib/libc')
-rw-r--r--newlib/libc/machine/spu/impure.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/machine/spu/impure.c b/newlib/libc/machine/spu/impure.c
index d403ae512..5fbe0e5f5 100644
--- a/newlib/libc/machine/spu/impure.c
+++ b/newlib/libc/machine/spu/impure.c
@@ -9,6 +9,6 @@
#define __ATTRIBUTE_IMPURE_DATA__
#endif
-struct _reent __ATTRIBUTE_IMPURE_DATA__ _impure_data = _REENT_INIT(impure_data);
+struct _reent __ATTRIBUTE_IMPURE_DATA__ _impure_data = _REENT_INIT(_impure_data);
struct _reent *__ATTRIBUTE_IMPURE_PTR__ _impure_ptr = &_impure_data;
struct _reent *_CONST __ATTRIBUTE_IMPURE_PTR__ _global_impure_ptr = &_impure_data;