summaryrefslogtreecommitdiff
path: root/src/port/sys_internal.h
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2009-02-21 19:24:12 +0100
committerAndreas Baumann <abaumann@yahoo.com>2009-02-21 19:24:12 +0100
commitb331893196a633abebddd1ec36d35da433326221 (patch)
tree4f2dfb6da2d8f655f520f661063f247aa9800bb9 /src/port/sys_internal.h
parent1f70e51deaab95cfcbfd114d8507830e53a1c916 (diff)
downloadwolfbones-b331893196a633abebddd1ec36d35da433326221.tar.gz
wolfbones-b331893196a633abebddd1ec36d35da433326221.tar.bz2
fixed for Intel CC
Diffstat (limited to 'src/port/sys_internal.h')
-rw-r--r--src/port/sys_internal.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/port/sys_internal.h b/src/port/sys_internal.h
new file mode 100644
index 0000000..ac45463
--- /dev/null
+++ b/src/port/sys_internal.h
@@ -0,0 +1,39 @@
+/*
+ Copyright (C) 2008 Andreas Baumann <abaumann@yahoo.com>
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#ifndef WOLF_SYS_INTERNAL_H
+#define WOLF_SYS_INTERNAL_H
+
+/**
+ * @file sys_internal.h
+ * @brief portability file for not publicly visible things
+ * @author Andreas Baumann <abaumann@yahoo.com>
+ */
+
+#if defined __INTEL_COMPILER
+
+#if( __INTEL_COMPILER >= 1100 )
+
+/* remark #593: variable "__d0" was set but never used in FD_ZERO, FD_SET in daemon.c */
+#pragma warning(disable:593)
+
+#endif /* __INTEL_COMPILER >= 1100 */
+
+#endif /* defined __INTEL_COMPILER */
+
+
+#endif /* ifndef WOLF_SYS_INTERNAL_H */