Adding void to empty function prototype parenthesis

This commit is contained in:
Petar Popovic
2024-09-12 03:31:09 +02:00
committed by Sam Lantinga
parent b15fab0207
commit fd2a266549
6 changed files with 7 additions and 7 deletions

View File

@@ -33,7 +33,7 @@ Uint64 next(Uint64 state[2]) {
return result;
}
static Uint64 rngState[2] = {1, 2};
Uint32 getRandomUint32() {
Uint32 getRandomUint32(void) {
return (Uint32)next(rngState);
}
/* ================= Test Case Helper Functions ================== */