Parcourir la source

Update linkers.md

0xAX il y a 9 ans
Parent
commit
4fe66d46e4
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      Misc/linkers.md

+ 1 - 1
Misc/linkers.md

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