summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Andersson <j.a.e.andersson@gmail.com>2016-07-05 15:34:12 -0500
committerJoel Andersson <j.a.e.andersson@gmail.com>2016-07-05 17:26:43 -0500
commite9a5a52f67561c96de2d583dd924411317fe9be9 (patch)
tree1191cef9331854a72420c977bcee881c2b6a2920
parentabe6b9992c456d0569c0d7819b3e54bf4761f67b (diff)
downloadswig-e9a5a52f67561c96de2d583dd924411317fe9be9.tar.gz
Issue #67 Added missing dependency on limits.h
-rw-r--r--Lib/matlab/matlabruntime.swg6
1 files changed, 2 insertions, 4 deletions
diff --git a/Lib/matlab/matlabruntime.swg b/Lib/matlab/matlabruntime.swg
index 3a61f1e56..6d30153d3 100644
--- a/Lib/matlab/matlabruntime.swg
+++ b/Lib/matlab/matlabruntime.swg
@@ -3,14 +3,12 @@
#include <stdint.h>
/* MATLAB's C-API */
#include <mex.h>
-/* need this for floor() */
+/* MISC C libraries */
#include <math.h>
-/* need this for strcmp() */
#include <string.h>
-/* need this for SWIG_Error below */
#include <stdarg.h>
-/* needed for SWIG_Error */
#include <stdio.h>
+#include <limits.h>
%}
%insert(runtime) "swigrun.swg";