mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-28 16:53:36 +00:00
1b440bf9d2
* Enhacements in r_egg library - Add support for including files - bla.r@include($PATH); - Proper support for goto() keyword - Add support to get and set environment variables (need more work) - PATH@env(/bin); - Fix /* */ comment parsing code
8 lines
72 B
R
8 lines
72 B
R
exit@syscall(1);
|
|
@syscall() {
|
|
: int 0x88
|
|
}
|
|
main@global() {
|
|
exit(0);
|
|
}
|