changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/ffi/readline/pkg.lisp

changeset 698: 96958d3eb5b0
parent: 804b5ee20a46
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 ;;; pkg.lisp --- low-level bindings to librustls
2 
3 ;;; Commentary:
4 
5 ;; https://github.com/vindarel/cl-readline
6 
7 ;;; Code:
8 (defpackage :readline
9  (:use :cl :sb-alien :std/alien)
10  (:export :load-readline))
11 
12 (in-package :readline)
13 
14 (define-alien-loader "readline" t "/usr/lib/")