summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cpukit/libcsupport/src/calloc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/libcsupport/src/calloc.c b/cpukit/libcsupport/src/calloc.c
index 636fc3ce02..8277fbb575 100644
--- a/cpukit/libcsupport/src/calloc.c
+++ b/cpukit/libcsupport/src/calloc.c
@@ -6,7 +6,7 @@
*/
/*
- * COPYRIGHT (c) 1989-2007.
+ * COPYRIGHT (c) 1989-2014.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -28,8 +28,8 @@ void *calloc(
size_t elsize
)
{
- register char *cptr;
- size_t length;
+ char *cptr;
+ size_t length;
MSBUMP(calloc_calls, 1);