forked from Imagelibrary/rtems
calloc.c: Remove use of register keyword
This commit is contained in:
@@ -6,7 +6,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* COPYRIGHT (c) 1989-2007.
|
* COPYRIGHT (c) 1989-2014.
|
||||||
* On-Line Applications Research Corporation (OAR).
|
* On-Line Applications Research Corporation (OAR).
|
||||||
*
|
*
|
||||||
* The license and distribution terms for this file may be
|
* The license and distribution terms for this file may be
|
||||||
@@ -28,8 +28,8 @@ void *calloc(
|
|||||||
size_t elsize
|
size_t elsize
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
register char *cptr;
|
char *cptr;
|
||||||
size_t length;
|
size_t length;
|
||||||
|
|
||||||
MSBUMP(calloc_calls, 1);
|
MSBUMP(calloc_calls, 1);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user