Remove all usage of the "register" storage class specifier.

This commit is contained in:
"Robert P. J. Day"
2006-07-01 13:08:46 +00:00
parent f350160963
commit 68229837ff
14 changed files with 247 additions and 252 deletions

View File

@ -87,7 +87,7 @@ uint16_t udhcp_checksum(void *addr, int count)
/* Compute Internet Checksum for "count" bytes
* beginning at location "addr".
*/
register int32_t sum = 0;
int32_t sum = 0;
uint16_t *source = (uint16_t *) addr;
while (count > 1) {