summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/newlibc_reent.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-09-26 15:48:43 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-09-26 15:48:43 +0000
commit62fbfe373482820350c8e84812c1d5cb27c23f6c (patch)
treeac61b9a46ef95a3eaa490accc52fc9a6b4f79b3c /cpukit/libcsupport/src/newlibc_reent.c
parent2009-09-26 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-62fbfe373482820350c8e84812c1d5cb27c23f6c.tar.bz2
2009-09-26 Joel Sherrill <joel.sherrill@oarcorp.com>
* libcsupport/include/rtems/libcsupport.h, libcsupport/src/newlibc_reent.c: Eliminate use of deprecated rtems_extension.
Diffstat (limited to 'cpukit/libcsupport/src/newlibc_reent.c')
-rw-r--r--cpukit/libcsupport/src/newlibc_reent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/libcsupport/src/newlibc_reent.c b/cpukit/libcsupport/src/newlibc_reent.c
index f4cdc0d1d1..97b3556c2b 100644
--- a/cpukit/libcsupport/src/newlibc_reent.c
+++ b/cpukit/libcsupport/src/newlibc_reent.c
@@ -94,7 +94,7 @@ bool newlib_create_hook(
*/
#ifdef NEED_SETVBUF
-rtems_extension newlib_begin_hook(rtems_tcb *current_task)
+void newlib_begin_hook(rtems_tcb *current_task)
{
setvbuf( stdout, NULL, _IOLBF, BUFSIZ );
}
@@ -127,7 +127,7 @@ int newlib_free_buffers(
return 0;
}
-rtems_extension newlib_delete_hook(
+void newlib_delete_hook(
rtems_tcb *current_task,
rtems_tcb *deleted_task
)