Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rapid7
GitHub Repository: rapid7/metasploit-framework
Path: blob/master/external/source/osx/x86/include/_exit.s
24763 views
1
_exit:
2
;; Exit cleanly
3
xor eax, eax
4
push eax ; EXIT_SUCCESS
5
push eax ; spacer
6
inc eax
7
int 0x80
8
9