Open Source
dynlink.asc
Associated article: Dynamic Linking Under Berkeley Unix
Tags: Open Source Design
_DYNAMIC LINKING UNDER BERKELEY UNIX_ by Oliver Sharp [LISTING ONE] /* dyn_link.c - a simple dynamic linker */ #include <stdio.h> #include <a.out.h> /************ Declarations ************/ #define TRUE 1 #define FALSE 0 #define PAGE_SIZE 4096 /* machine-dependent constant */ /* FUNC_...


