0xAX пре 9 година
родитељ
комит
4fe66d46e4
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      Misc/linkers.md

+ 1 - 1
Misc/linkers.md

@@ -38,7 +38,7 @@ The `lib.c` file contains:
 
 ```C
 int factorial(int base) {
-	int res = 1, i = 1;
+	int res,i = 1;
 	
 	if (base == 0) {
 		return 1;