From 03b01c6c0b998780d3ea6f73fe86378b39ba41a9 Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Wed, 26 Sep 2018 20:03:57 -0400 Subject: [PATCH] Remove vestigial function declaration --- src/include/janet/janet.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/include/janet/janet.h b/src/include/janet/janet.h index 7081b3b7..be9e8dea 100644 --- a/src/include/janet/janet.h +++ b/src/include/janet/janet.h @@ -949,7 +949,6 @@ JANET_API const uint8_t *janet_description(Janet x); JANET_API const uint8_t *janet_to_string(Janet x); JANET_API void janet_to_string_b(JanetBuffer *buffer, Janet x); JANET_API void janet_to_description_b(JanetBuffer *buffer, Janet x); -JANET_API const char *janet_to_zerostring(Janet x); #define janet_cstringv(cstr) janet_wrap_string(janet_cstring(cstr)) #define janet_stringv(str, len) janet_wrap_string(janet_string((str), (len))) JANET_API const uint8_t *janet_formatc(const char *format, ...);