Xv6 with picoc & Linkage editor  v1.0
The project delineate mutual cohesion between c library, linkage editor ( linker), interpreter and operating system by porting the same on xv6 kernel
ld.h
00001 typedef struct Node{
00002         char name[16];
00003         GElf_Sym *symbol;
00004         struct Node *next;
00005         int argindex;
00006 }Node;
00007 
 All Data Structures