diff options
author | Timber | 2024-06-02 12:09:23 +0200 |
---|---|---|
committer | Timber | 2024-06-02 12:09:23 +0200 |
commit | d17eda60e04bde07ed403ec32743a3214e8f5655 (patch) | |
tree | aaa6a5343322e37e399a2234c60b40c9b7bad755 | |
parent | d8b94cdde827b4d3f175112ebc31d7ec96b8cb24 (diff) |
Fix quote
-rw-r--r-- | future-of-pwning-1.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/future-of-pwning-1.md b/future-of-pwning-1.md index 31cc614..a5bb180 100644 --- a/future-of-pwning-1.md +++ b/future-of-pwning-1.md @@ -130,6 +130,7 @@ Looking at the assembly of this hello world program, we can see how library call As the [library repository says](https://github.com/ForwardCom/libraries/blob/master/README.md), `lic.li` > [c]ontains the most important C standard functions. + Also in the repository we can see the `.as` files for the individual functions. We can learn from `hello.as` that function names have an underscore pretended though. But then we can basically do C coding! In C our program could look like this: ```C |