Hash : 5bd2a4dc Author : Thomas de Grivel Date : 2017-04-02T14:49:50
Download
1 2 3 4 5 6 7 8 9 10 11
(in-package :cffi-errno) (defcfun ("strerror" c-strerror) :string (errnum :int)) (defun strerror (errnum) (c-strerror errnum)) (defun error-errno (msg) (error "~A: ~D ~A" msg errno (strerror errno)))