We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d142f8b commit 0c756ecCopy full SHA for 0c756ec
libs/utilities.c
@@ -79,7 +79,8 @@ char** new2DArray(int rows, int cols) {
79
80
void sleep(int miliseconds) {
81
clock_t startTime = clock();
82
- while (clock() < (startTime + miliseconds));
+ while (clock() < (startTime + miliseconds))
83
+ ;
84
}
85
86
int strcmpi(const char* str01, const char* str02) {
0 commit comments