r10563: add module keyword to def-function
[uffi.git] / tests / getenv.lisp
index 19fe1936ddf600b23a6804c18e0b68c7f3a93230..6fafc45e2c370ad2e67a878cb921599b522175dc 100644 (file)
 
 (uffi:def-function ("getenv" c-getenv) 
     ((name :cstring))
+  :module "c"
   :returning :cstring)
 
 (uffi:def-function ("setenv" c-setenv) 
     ((name :cstring)
      (value :cstring)
      (overwrite :int))
+  :module "c"
   :returning :int)
 
 (uffi:def-function ("unsetenv" c-unsetenv)
     ((name :cstring))
+  :module "c"
   :returning :void)
 
 (defun my-getenv (key)