summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2014-01-31 12:28:02 -0600
committerJoel Sherrill <joel.sherrill@oarcorp.com>2014-02-03 17:45:32 -0600
commitcfbeaf6da0fb528e5eddee5e09cee036db172610 (patch)
tree0086053af89a568b523d5c46e4613a00309f73e0
parentposix/*.c: Remove use of register keyword (diff)
downloadrtems-cfbeaf6da0fb528e5eddee5e09cee036db172610.tar.bz2
calloc.c: Remove use of register keyword
-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);