SWIG binaries for Linux x86_64.

Including the common include files for all platforms.
This was built from the master branch of external/swig at commit
13bc911df5519b83b4ce8e05beca94363563e0e7.

Tested: LiquidFun on Linux x86-64, build and unit tests.
Change-Id: I4ace8dd8558fb85449ad1e5b300b7e158548f529
diff --git a/common/swig/include/2.0.11/ocaml/std_pair.i b/common/swig/include/2.0.11/ocaml/std_pair.i
new file mode 100644
index 0000000..fe45ee6
--- /dev/null
+++ b/common/swig/include/2.0.11/ocaml/std_pair.i
@@ -0,0 +1,34 @@
+/* -----------------------------------------------------------------------------
+ * std_pair.i
+ *
+ * SWIG typemaps for std::pair
+ * ----------------------------------------------------------------------------- */
+
+%include <std_common.i>
+%include <exception.i>
+
+// ------------------------------------------------------------------------
+// std::pair
+// ------------------------------------------------------------------------
+
+%{
+#include <utility>
+%}
+
+namespace std {
+
+  template<class T, class U> struct pair {
+
+    pair();
+    pair(T first, U second);
+    pair(const pair& p);
+
+    template <class U1, class U2> pair(const pair<U1, U2> &p);
+
+    T first;
+    U second;
+  };
+
+  // add specializations here
+
+}