pennmush-1.8.3p3/game/data/
pennmush-1.8.3p3/game/log/
pennmush-1.8.3p3/game/save/
pennmush-1.8.3p3/game/txt/evt/
pennmush-1.8.3p3/game/txt/nws/
pennmush-1.8.3p3/po/
pennmush-1.8.3p3/win32/msvc.net/
pennmush-1.8.3p3/win32/msvc6/
#!/bin/sh

# Wrapper script for checking Penn source with splint (http://www.splint.org)
# Run from within the source directory.

SFLAGS="-I.. -I../hdrs +posixlib -weak"

# Disable assorted spurious warnings
SFLAGS="$SFLAGS -nestcomment -fixedformalarray"
SFLAGS="$SFLAGS -predbool -retvalother -unrecog"

# Work around C99/GCC keywords splint doesn't understand
SFLAGS="$SFLAGS -D__restrict= -Drestrict="

echo "Using options: $SFLAGS"

exec splint $SFLAGS $*