calloc.c: Remove use of register keyword

This commit is contained in:
Joel Sherrill
2014-01-31 12:28:02 -06:00
parent e633f3b51c
commit cfbeaf6da0

View File

@@ -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);