
Raymond Toy pushed to branch issue-365-add-strerror at cmucl / cmucl Commits: f04b033c by Raymond Toy at 2025-02-10T08:57:03-08:00 Export more errno symbols for linux These are new errno values found by generating unix-errno.lisp. This gets rid of the warning that the UNIX package exports other symbols. - - - - - 1 changed file: - src/code/exports.lisp Changes: ===================================== src/code/exports.lisp ===================================== @@ -553,7 +553,22 @@ "WRITEGRP" "WRITEOTH" "XMT1EN" - )) + ) + ;; Additional errno for linux + #+linux + (:export + "EKEYREJECTED" + "EMEDIUMTYPE" + "ENOKEY" + "ECANCELED" + "EOWNERDEAD" + "EKEYEXPIRED" + "EKEYREVOKED" + "ERFKILL" + "ENOTRECOVERABLE" + "ENOMEDIUM" + "EHWPOISON" + )) (defpackage "FORMAT") View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/f04b033c81aaecea0b1e15b3... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/f04b033c81aaecea0b1e15b3... You're receiving this email because of your account on gitlab.common-lisp.net.
participants (1)
-
Raymond Toy (@rtoy)