Changes from Eric for Alpha and other support

This commit is contained in:
Ronald G. Minnich 2001-03-13 04:22:19 +00:00
commit 227ca052f7
26 changed files with 1846 additions and 157 deletions

7
src/include/kmalloc.h Normal file
View file

@ -0,0 +1,7 @@
#ifndef KMALLOC_H
#define KMALLOC_H
#include <stdlib.h>
#define kmalloc(x,y) malloc(x)
#endif /* KMALLOC_H */