From 5f7f54d961f1c1fbb957626a0f5672e71171eff6 Mon Sep 17 00:00:00 2001 From: dwarning Date: Thu, 17 Sep 2020 16:42:45 +0200 Subject: [PATCH] cleaning prototypes --- src/xspice/evt/evtsetup.c | 1 + src/xspice/icm/table/table3D/cfunc.mod | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xspice/evt/evtsetup.c b/src/xspice/evt/evtsetup.c index 4c96ded04..a0a3bd314 100644 --- a/src/xspice/evt/evtsetup.c +++ b/src/xspice/evt/evtsetup.c @@ -61,6 +61,7 @@ static int EVTsetup_jobs(CKTcircuit *ckt); static int EVTsetup_load_ptrs(CKTcircuit *ckt); int EVTsetup_plot(CKTcircuit* ckt, char* plottypename); +int EVTswitch_plot(CKTcircuit* ckt, const char* plottypename); /* Allocation macros with built-in check for out-of-memory */ diff --git a/src/xspice/icm/table/table3D/cfunc.mod b/src/xspice/icm/table/table3D/cfunc.mod index f94470319..4ffb59213 100644 --- a/src/xspice/icm/table/table3D/cfunc.mod +++ b/src/xspice/icm/table/table3D/cfunc.mod @@ -118,9 +118,8 @@ typedef Table3_Data_t Local_Data_t; /*=== FUNCTION PROTOTYPE DEFINITIONS ===*/ -extern char *CNVgettok(char **s); +extern double BilinearInterpolation(double x, double y, int xind, int yind, double **td); extern double TrilinearInterpolation(double x, double y, double z, int xind, int yind, int zind, double ***td); -int cnv_get_spice_value(char *str, double *p_value); extern int findCrossOver(double arr[], int n, double x); static void free_local_data(Table3_Data_t *loc);