smaller C to avoid negative

This commit is contained in:
ClF3 2024-11-04 20:51:53 +08:00
parent faccde9326
commit fb94e5f52e
1 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@
#define CACHE_HIT_THRESHOLD 200
#define WAIT_TIME 1000
#define AVAR 1664525
#define CVAR 1013904223
#define CVAR 10020107
int main() {
int index = -1;
int flag = -1;
@ -40,4 +40,4 @@ int main() {
deallocate_shared_buffer(buf);
return 0;
}
}