Blame lang/cl/gpgme-grovel.lisp

Packit Service 30b792
;;;; gpgme-grovel.lisp
Packit Service 30b792
Packit Service 30b792
;;; This file is part of GPGME-CL.
Packit Service 30b792
;;;
Packit Service 30b792
;;; GPGME-CL is free software; you can redistribute it and/or modify it
Packit Service 30b792
;;; under the terms of the GNU General Public License as published by
Packit Service 30b792
;;; the Free Software Foundation; either version 2 of the License, or
Packit Service 30b792
;;; (at your option) any later version.
Packit Service 30b792
;;;
Packit Service 30b792
;;; GPGME-CL is distributed in the hope that it will be useful, but
Packit Service 30b792
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 30b792
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 30b792
;;; Lesser General Public License for more details.
Packit Service 30b792
;;;
Packit Service 30b792
;;; You should have received a copy of the GNU General Public License
Packit Service 30b792
;;; along with GPGME; if not, write to the Free Software Foundation,
Packit Service 30b792
;;; Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
Packit Service 30b792
Packit Service 30b792
Packit Service 30b792
(in-package :gpgme)
Packit Service 30b792
Packit Service 30b792
Packit Service 30b792
(include "errno.h" "sys/types.h")
Packit Service 30b792
Packit Service 30b792
(constant (+ebadf+ "EBADF"))
Packit Service 30b792
Packit Service 30b792
(ctype off-t "off_t")
Packit Service 30b792
(ctype size-t "size_t")
Packit Service 30b792
(ctype ssize-t "ssize_t")
Packit Service 30b792
Packit Service 30b792
(cvar ("errno" *errno*) :int)