1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-27 20:27:45 +00:00

Wholesale removal of deprecated register attribute from all source files

This commit is contained in:
Nick Briggs
2022-08-15 15:04:07 -07:00
parent 5c0349cc69
commit 873d4927ce
107 changed files with 777 additions and 777 deletions

View File

@@ -156,7 +156,7 @@ static int bytecmp(const char *char1, const char *char2, int len)
*/
/**********************************************************************/
LispPTR compare_chars(register const char *char1, register const char *char2, register DLword length) {
LispPTR compare_chars(const char *char1, const char *char2, DLword length) {
#ifndef BYTESWAP
if (memcmp(char1, char2, length) == 0)
#else
@@ -196,7 +196,7 @@ int lispcmp(const DLword *char1, const char *char2, int len) {
*/
/**********************************************************************/
LispPTR compare_lisp_chars(register const char *char1, register const char *char2, register DLword length,
LispPTR compare_lisp_chars(const char *char1, const char *char2, DLword length,
DLword fat1, DLword fat2) {
if ((!fat1) == (!fat2)) { /* both fat or both non-fat. */
#ifdef BYTESWAP