From 61e482f6f36aee6f72392a6188f2ec5c858b88fd Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 2 Sep 2024 18:47:39 -0400 Subject: Initial WIP first past --- builtins/pointer.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'builtins/pointer.h') diff --git a/builtins/pointer.h b/builtins/pointer.h index 538960b3..7748da4b 100644 --- a/builtins/pointer.h +++ b/builtins/pointer.h @@ -8,10 +8,9 @@ #include "types.h" -CORD Pointer$as_text(const void *x, bool colorize, const TypeInfo *type); +Text_t Pointer$as_text(const void *x, bool colorize, const TypeInfo *type); int32_t Pointer$compare(const void *x, const void *y, const TypeInfo *type); bool Pointer$equal(const void *x, const void *y, const TypeInfo *type); -uint32_t Pointer$hash(const void *x, const TypeInfo *type); #define Null(t) (t*)NULL #define POINTER_TYPE(_sigil, _pointed) (&(TypeInfo){\ -- cgit v1.2.3