Files
nethack/sys/msdos/compwarn.lst
nethack.allison 742e1e8c90 3.3.2 to 3.4.0
2002-02-04 16:11:00 +00:00

17 lines
792 B
Plaintext

/* SCSS Id: @(#)compwarn.lst 3.4 1992/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.