1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2025-01-03 04:10:56 +00:00

Update linkers.md

This commit is contained in:
0xAX 2016-02-13 00:27:17 +06:00
parent aedaaf6d97
commit 4fe66d46e4

View File

@ -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;