From 2fe639f0aee94abf1f7157e033e54bb696d15ea5 Mon Sep 17 00:00:00 2001 From: Paul Guyot Date: Fri, 6 Oct 2023 00:18:15 +0200 Subject: [PATCH] Fix warning introduced in 74e68af Remove unused static prototype declaration as the function was eventually moved to posix_nifs.c. Signed-off-by: Paul Guyot --- src/libAtomVM/nifs.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/libAtomVM/nifs.c b/src/libAtomVM/nifs.c index 95284c4cb..b9b76689c 100644 --- a/src/libAtomVM/nifs.c +++ b/src/libAtomVM/nifs.c @@ -159,7 +159,6 @@ static term nif_atomvm_add_avm_pack_file(Context *ctx, int argc, term argv[]); static term nif_atomvm_close_avm_pack(Context *ctx, int argc, term argv[]); static term nif_atomvm_get_start_beam(Context *ctx, int argc, term argv[]); static term nif_atomvm_read_priv(Context *ctx, int argc, term argv[]); -static term nif_atomvm_posix_clock_settime(Context *ctx, int argc, term argv[]); static term nif_console_print(Context *ctx, int argc, term argv[]); static term nif_base64_encode(Context *ctx, int argc, term argv[]); static term nif_base64_decode(Context *ctx, int argc, term argv[]);