ISADMA moved out to a module
[tpg/acess2.git] / Usermode / Libraries / ld-acess.so_src / export.c
index 867e17f..d69c6d2 100644 (file)
@@ -6,11 +6,11 @@
 
 #define _STR(x)        #x
 #define STR(x) _STR(x)
-#define EXP(sym)       {(Uint)&sym, STR(sym)}
+#define EXP(sym)       {&sym, STR(sym)}
 
 // === CONSTANTS ===
 const struct {
-       Uint    Value;
+       void    *Value;
        char    *Name;
 }      caLocalExports[] = {
        EXP(gLoadedLibraries),
@@ -56,11 +56,13 @@ const struct {
        EXP(chdir),
        EXP(ioctl),
        EXP(_SysMount),
+       EXP(select),
 
        EXP(_SysOpenChild),
        
        EXP(_SysGetPhys),
-       EXP(_SysAllocate)
+       EXP(_SysAllocate),
+       EXP(_SysDebug)
 
 };
 

UCC git Repository :: git.ucc.asn.au