From 1ab231dee59108a0a5c2c533a208a8c1f396432c Mon Sep 17 00:00:00 2001 From: Joshua Suskalo Date: Wed, 16 Nov 2022 16:57:52 -0600 Subject: [PATCH] Remove a reference to long-long --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 53b4fc4..1f65f22 100644 --- a/README.md +++ b/README.md @@ -132,14 +132,13 @@ Coffi defines a basic set of primitive types: Each of these types maps to their C counterpart. Values of any of these primitive types except for `pointer` will be cast with their corresponding -Clojure function (with `long-long` mapping to the `long` function) when they are -passed as arguments to native functions. Additionally, the `c-string` type is -defined, although it is not primitive. +Clojure function when they are passed as arguments to native functions. +Additionally, the `c-string` type is defined, although it is not primitive. ### Composite Types In addition, some composite types are also defined in coffi, including struct and union types (unions will be discussed with serialization and -deserialization). For an example c struct and function: +deserialization). For an example C struct and function: ```c typedef struct point {