CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/external/source/osx/x86/include/_exit.s
Views: 11784
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