execl.s 119 B

12345678
  1. #include "syscall.h"
  2. .extern _environ
  3. DEFINE(_execl)
  4. pushl _environ
  5. pushab 8(ap)
  6. pushl 4(ap)
  7. calls $3,_execve
  8. ret