radare2/libr/egg/t/sys.r
pancake 1b440bf9d2 * Add ragg2 -I to prepend include path directories
* 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
2011-09-20 01:53:15 +02:00

8 lines
72 B
R

exit@syscall(1);
@syscall() {
: int 0x88
}
main@global() {
exit(0);
}