]> Dogcows Code - chaz/yoink/blobdiff - src/stlplus/portability/portability_fixes.cpp
testing new non-autotools build system
[chaz/yoink] / src / stlplus / portability / portability_fixes.cpp
diff --git a/src/stlplus/portability/portability_fixes.cpp b/src/stlplus/portability/portability_fixes.cpp
new file mode 100644 (file)
index 0000000..e26ee28
--- /dev/null
@@ -0,0 +1,39 @@
+////////////////////////////////////////////////////////////////////////////////\r
+\r
+//   Author:    Andy Rushton\r
+//   Copyright: (c) Southampton University 1999-2004\r
+//              (c) Andy Rushton           2004-2009\r
+//   License:   BSD License, see ../docs/license.html\r
+\r
+////////////////////////////////////////////////////////////////////////////////\r
+#include "portability_fixes.hpp"\r
+\r
+#ifdef MSWINDOWS\r
+#include "windows.h"\r
+#endif\r
+\r
+////////////////////////////////////////////////////////////////////////////////\r
+// problems with missing functions\r
+////////////////////////////////////////////////////////////////////////////////\r
+\r
+#ifdef MSWINDOWS\r
+unsigned sleep(unsigned seconds)\r
+{\r
+  Sleep(1000*seconds);\r
+  // should return remaining time if interrupted - however Windoze Sleep cannot be interrupted\r
+  return 0;\r
+}\r
+#endif\r
+\r
+////////////////////////////////////////////////////////////////////////////////\r
+// Function for establishing endian-ness\r
+////////////////////////////////////////////////////////////////////////////////\r
+\r
+bool stlplus::little_endian(void)\r
+{\r
+  int sample = 1;\r
+  char* sample_bytes = (char*)&sample;\r
+  return sample_bytes[0] != 0;\r
+}\r
+\r
+////////////////////////////////////////////////////////////////////////////////\r
This page took 0.020671 seconds and 4 git commands to generate.