elf_loader 0.16.0

A no_std-friendly ELF loader and runtime 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;
}