소스 검색

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;