mplisp

miniPicoLisp with FFI and modules for Buddy BDD library, OpenGL, Gtk and GMP
git clone https://logand.com/git/mplisp.git/
Log | Files | Refs

dl.l (271B)


      1 (def 'RTLD_LOCAL    (hex "0000"))
      2 (def 'RTLD_LAZY     (hex "0001"))
      3 (def 'RTLD_NOW      (hex "0002"))
      4 (def 'RTLD_NOLOAD   (hex "0004"))
      5 (def 'RTLD_DEEPBIND (hex "0008"))
      6 (def 'RTLD_GLOBAL   (hex "0100"))
      7 (def 'RTLD_NODELETE (hex "1000"))
      8 
      9 # RTLD_DEFAULT 0
     10 # RTLD_NEXT -1