From e8631817639de4c976e22934ccc007051ef06a18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Tempel?= Date: Sun, 3 May 2020 17:31:36 +0200 Subject: [PATCH] mpc.h: Add prototype for mpcf_freefold The mpcf_freefold is documented in the README but currently not declared in the header file. As such, adding the latter was probably just forgotten at some point. This change adds the required function prototype. --- mpc.h | 1 + 1 file changed, 1 insertion(+) diff --git a/mpc.h b/mpc.h index b738cfd..1622ada 100644 --- a/mpc.h +++ b/mpc.h @@ -258,6 +258,7 @@ mpc_val_t *mpcf_snd_free(int n, mpc_val_t** xs); mpc_val_t *mpcf_trd_free(int n, mpc_val_t** xs); mpc_val_t *mpcf_all_free(int n, mpc_val_t** xs); +mpc_val_t *mpcf_freefold(int n, mpc_val_t** xs); mpc_val_t *mpcf_strfold(int n, mpc_val_t** xs); mpc_val_t *mpcf_maths(int n, mpc_val_t** xs);