elf_loader 0.15.1

A no_std-friendly ELF loader, runtime linker, and JIT linker for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

int main() {
  int res = system("ps -ef | tail");
  printf("res = %d\n", res);
  sleep(2);
  return 0;
}