--std=gnu99: declare for-loop variables inside for() where possible
Replace unsigned int i; for(i = 0; ...) with for(unsigned int i=; ...)
Showing
Please register or sign in to comment
Replace unsigned int i; for(i = 0; ...) with for(unsigned int i=; ...)