source: trunk/abcl/contrib/posix-syscalls/package.lisp

Last change on this file was 15700, checked in by Mark Evenson, 12 months ago

Create POSIX-SYSCALLS contrib to set environment variables

Based on code provided by Alan Ruttenberg in
<https://github.com/alanruttenberg/lsw2/blob/owlapiv4/util/setenv.lisp>.

See
<https://mailman.common-lisp.net/pipermail/armedbear-devel/2023-April/004308.html>
ff.

See <file:contrib/posix-syscalls/posix-syscalls.org>.

File size: 144 bytes
Line 
1(defpackage system/posix-syscalls
2  (:nicknames #:sys/posix-syscalls)
3  (:use :common-lisp)
4  (:export
5   #:getenv
6   #:putenv
7   #:unsetenv))
8
Note: See TracBrowser for help on using the repository browser.