]> granicus.if.org Git - nethack/commitdiff
*** empty log message ***
authorjwalz <jwalz>
Sat, 5 Jan 2002 21:05:56 +0000 (21:05 +0000)
committerjwalz <jwalz>
Sat, 5 Jan 2002 21:05:56 +0000 (21:05 +0000)
sys/msdos/compwarn.lst [new file with mode: 0644]

diff --git a/sys/msdos/compwarn.lst b/sys/msdos/compwarn.lst
new file mode 100644 (file)
index 0000000..f17c0b6
--- /dev/null
@@ -0,0 +1,16 @@
+/*     SCSS Id:    @(#)compwarn.lst    3.3     92/10/08            */
+/* Copyright (c) Paul Winner, 1992                                 */
+/* NetHack may be freely redistributed.  See license for details.   */
+
+This file contains a list of compiler warnings generated by Microsoft
+C version 7.0, compiled with the /W4 switch, and any known reasons for
+the warning.  You can safely ignore any warning your compile gives if
+it appears on this list.
+
+C4127 (4):  Conditional expression is constant
+           The While(1) statements used in the code cause this warning.
+           For the sake of making more easily readable code, this is the
+           preferred construct for NetHack.
+C4131 (4):  function: uses old-style declarator
+           In order to make the code as portable as possible, all func-
+           tions in NetHack use the old-style declarator.