Skip to content

Commit

Permalink
Fix: nasm external function declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
mbgg committed Apr 30, 2015
1 parent fe83e27 commit 3ea864f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion getting_to_c.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ rightmost argument first. The return value of the function is placed in the

~~~ {.nasm}
; The assembly code
external sum_of_three ; the function sum_of_three is defined elsewhere
extern sum_of_three ; the function sum_of_three is defined elsewhere
push dword 3 ; arg3
push dword 2 ; arg2
Expand Down

0 comments on commit 3ea864f

Please sign in to comment.