From e02a60b331eb74a15374f7cd26255b74ab43bae6 Mon Sep 17 00:00:00 2001 From: Joshua Suskalo Date: Sat, 25 Sep 2021 09:29:24 -0500 Subject: [PATCH] Change defcstruct to defalias in the readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a85b3bd..8c5f308 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ In the simplest cases, the native functions you call will work exclusively with built-in types, for example the function `strlen` from libc. ```clojure -(require '[coffi.ffi :as ffi :refer [defcfn defcstruct]]) +(require '[coffi.ffi :as ffi :refer [defcfn defalias]]) (defcfn strlen "Given a string, measures its length in bytes."