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
 All Data Structures
43_void_param.c
00001 #include <stdio.h>
00002 
00003 void fred(void)
00004 {
00005     printf("yo\n");
00006 }
00007 
00008 fred();
00009 
00010 void main() {}
 All Data Structures