Changeset 94

Show
Ignore:
Timestamp:
02/28/05 03:48:17 (3 years ago)
Author:
jjr
Message:

- Linux makefile added for util package
- Fixed linux version of util package so it compiles

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/DerelictUtil/derelict/util/loader.d

    r93 r94  
    118118    body 
    119119    { 
    120         void* proc = dlsym(lib.handle, toStringz(procName)); 
    121         if(null is symbol
     120        void* proc = dlsym(lib._handle, toStringz(procName)); 
     121        if(null is proc
    122122            throw new SharedLibProcLoadException(lib._name, procName); 
    123123        return proc;