From cfbeaf6da0fb528e5eddee5e09cee036db172610 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 31 Jan 2014 12:28:02 -0600 Subject: calloc.c: Remove use of register keyword --- cpukit/libcsupport/src/calloc.c | 6 +++--- 1 file 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); -- cgit v1.2.3