You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Chapter-4/README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ Our basic C++ runtime can be found in the [cxx.cc](https://github.com/SamyPesse/
12
12
13
13
#### Basic C/C++ functions
14
14
15
-
The kernel code can't use functions from the standards libraries so we need to add some basics functions for managing memory, string, ...
15
+
The kernel code can't use functions from the standard libraries so we need to add some basic functions for managing memory and strings:
16
16
17
17
```
18
18
void itoa(char *buf, unsigned long int n, int base);
@@ -32,7 +32,7 @@ These functions are defined in [string.cc](https://github.com/SamyPesse/How-to-M
32
32
33
33
#### Compile our kernel
34
34
35
-
Compiling a kernel is not the same thing as compile a linux executable, we can't use standard library and need no dependencies to the system.
35
+
Compiling a kernel is not the same thing as compiling a linux executable, we can't use standard library and should have no dependencies to the system.
36
36
37
37
Our [Makefile](https://github.com/SamyPesse/How-to-Make-a-Computer-Operating-System/blob/master/src/kernel/Makefile) will define the process to compile and link our kernel.
0 commit comments