浏览代码

Update linkers.md

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;