Browse code

Fixed C exit issue

git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/Rtreemix@75418 bc3139a8-67e5-0310-9ffc-ced21a209358

Jasmina Bogojeska authored on 07/04/2013 15:30:11
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,9 @@
1
+#include <Rdefines.h>
2
+#include "include/Rtreemix_patch.h"
3
+
4
+void _Rtreemix_exit(int status)
5
+{
6
+    Rf_error
7
+        ("internal: mtreemix invoked 'exit(%d)'; see warnings() and restart R",
8
+         status);
9
+}