From: jwalz Date: Sat, 5 Jan 2002 21:05:56 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: MOVE2GIT~3744 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=081d64a762e7e0c9bc4e51950f6e45f10fdcdc3c;p=nethack *** empty log message *** --- diff --git a/sys/msdos/compwarn.lst b/sys/msdos/compwarn.lst new file mode 100644 index 000000000..f17c0b6d9 --- /dev/null +++ b/sys/msdos/compwarn.lst @@ -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.