summaryrefslogtreecommitdiff
path: root/packages/sundials/src/helpers.h
diff options
context:
space:
mode:
authoridontgetoutmuch <dominic@steinitz.org>2019-06-30 09:03:23 +0100
committerGitHub <noreply@github.com>2019-06-30 09:03:23 +0100
commit03f114e2d849bbffac89e535c7736ebe7e4d1762 (patch)
treea8d57bc9f286bdc3cb1b196a5dec78e805b49996 /packages/sundials/src/helpers.h
parent89c12f2b97f35b5e2722c3a9134516e813b205bd (diff)
parentcb09d0e99ae4f10cd2b3f3ac667df83946a9744d (diff)
Merge pull request #306 from idontgetoutmuch/master
Remove sundials as it has its own repo now. Fix
Diffstat (limited to 'packages/sundials/src/helpers.h')
-rw-r--r--packages/sundials/src/helpers.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/packages/sundials/src/helpers.h b/packages/sundials/src/helpers.h
deleted file mode 100644
index 3d8fbc0..0000000
--- a/packages/sundials/src/helpers.h
+++ /dev/null
@@ -1,9 +0,0 @@
1/* Check function return value...
2 opt == 0 means SUNDIALS function allocates memory so check if
3 returned NULL pointer
4 opt == 1 means SUNDIALS function returns a flag so check if
5 flag >= 0
6 opt == 2 means function allocates memory so check if returned
7 NULL pointer
8*/
9int check_flag(void *flagvalue, const char *funcname, int opt);