fix: remove register key word from fast integer

This commit is contained in:
realstealthninja
2024-10-01 22:11:40 +05:30
parent 01cb061fe2
commit cf96959b95

View File

@@ -11,7 +11,7 @@
void fastinput(int *number) {
// variable to indicate sign of input integer
bool negative = false;
register int c;
int c;
*number = 0;
// extract current character from buffer