Skip to content
Snippets Groups Projects
Commit 94b4c963 authored by thomas kleiber's avatar thomas kleiber
Browse files

C code: fix build warning

parent a53df3ae
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
#include <math.h> #include <math.h>
void gutsredit_init(void (* odeparms)(int *, double *)); void gutsredit_init(void (* odeparms)(int *, double *));
void gutsredit_free(); void gutsredit_free(void);
/** /**
* Number of MCMC iterations * Number of MCMC iterations
...@@ -32,7 +32,7 @@ void gutsredit_init(void (* odeparms)(int *, double *)) ...@@ -32,7 +32,7 @@ void gutsredit_init(void (* odeparms)(int *, double *))
{ {
// get access to parameters supplied to deSolve // get access to parameters supplied to deSolve
SEXP (*fun)(void); SEXP (*fun)(void);
fun = (SEXP(*)())R_GetCCallable("deSolve", "get_deSolve_gparms"); fun = (SEXP(*)(void))R_GetCCallable("deSolve", "get_deSolve_gparms");
if(LENGTH(fun())==0) if(LENGTH(fun())==0)
error("no parameters supplied"); error("no parameters supplied");
...@@ -56,7 +56,7 @@ void gutsredit_init(void (* odeparms)(int *, double *)) ...@@ -56,7 +56,7 @@ void gutsredit_init(void (* odeparms)(int *, double *))
/** /**
* Free allocated memory * Free allocated memory
*/ */
void gutsredit_free() void gutsredit_free(void)
{ {
Free(kd); Free(kd);
Free(hb); Free(hb);
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
#include <math.h> #include <math.h>
void gutsredsd_init(void (* odeparms)(int *, double *)); void gutsredsd_init(void (* odeparms)(int *, double *));
void gutsredsd_free(); void gutsredsd_free(void);
/** /**
* Number of MCMC iterations * Number of MCMC iterations
...@@ -39,7 +39,7 @@ void gutsredsd_init(void (* odeparms)(int *, double *)) ...@@ -39,7 +39,7 @@ void gutsredsd_init(void (* odeparms)(int *, double *))
error("no parameters supplied"); error("no parameters supplied");
// peak into first argument // peak into first argument
MCMC = (int)REAL(fun())[0]; MCMC = (int)REAL(fun(void))[0];
// allocate memory // allocate memory
int N = MCMC*4+1; int N = MCMC*4+1;
double *arr = (double*)Calloc(N, double); double *arr = (double*)Calloc(N, double);
...@@ -62,7 +62,7 @@ void gutsredsd_init(void (* odeparms)(int *, double *)) ...@@ -62,7 +62,7 @@ void gutsredsd_init(void (* odeparms)(int *, double *))
/** /**
* Free allocated memory * Free allocated memory
*/ */
void gutsredsd_free() void gutsredsd_free(void)
{ {
Free(kd); Free(kd);
Free(hb); Free(hb);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment