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.
2 parents fe14514 + e78849d commit 825e23dCopy full SHA for 825e23d
libs/utilities.c
@@ -76,7 +76,8 @@ char** newMatrix(int rows, int cols) {
76
77
void sleep(int miliseconds) {
78
clock_t startTime = clock();
79
- while (clock() < (startTime + miliseconds));
+ while (clock() < (startTime + miliseconds))
80
+ ;
81
}
82
83
int strcmpi(const char* str01, const char* str02) {
0 commit comments