remove register from variable declarations

This commit is contained in:
nhmall
2024-02-19 16:30:07 -05:00
parent 6f569f0a27
commit 688ac6ffbe
113 changed files with 836 additions and 835 deletions
+2 -2
View File
@@ -489,8 +489,8 @@ tputs(const char *string, /* characters to output */
int (*output_func)(int)) /* actual output routine;
* return value ignored */
{
register int c, num = 0;
register const char *p = string;
int c, num = 0;
const char *p = string;
if (!p || !*p)
return;