Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 8581 - APP-SCI/MAGIC-7.1 cannot build with GCC 3.2
Summary: APP-SCI/MAGIC-7.1 cannot build with GCC 3.2
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: x86 Linux
: High major (vote)
Assignee: Daniel Ahlberg (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-09-30 13:28 UTC by D Kindlund
Modified: 2003-02-04 19:42 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments
Update ebuild that corrects several problems (magic-7.1-r1.tar.gz,2.40 KB, patch)
2002-10-02 21:57 UTC, Michael Nygard
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description D Kindlund 2002-09-30 13:28:01 UTC
WARNING: The ebuild script will "appear" to build properly; however, the main 
program "/usr/bin/magic" will fail to build and thus NOT appear as a valid 
application!

After upgrading to GCC 3.2, gcc refuses to compile the main magic binary unless 
*all* references of "mktemp()" within the source code are replaced with "mkstemp
()".  After changing those, the main binaries will compile.

Environment: Linux tau.kindlund.net 2.4.19-gentoo-r9 #1 SMP Fri Sep 20 18:48:26 
EDT 2002 i686 GenuineIntel
System: Dual P2-400Mhz, 512 MB RAM
CFLAGS="-march=pentium2 -O3 -pipe -fomit-frame-pointer -ffast-math -fforce-
addr -falign-functions=4 -funroll-loops"

Note: I was only able to pinpoint this error by freezing the ebuild (CTRL-Z) 
before it did the final install and wiped the /var/tmp/portage/magic-
7.1/work/magic-7.1 directory.  Inside there, I did a manual make and found 
these errors:

Location of Compilation Error Output:
<SNIP>
-=[root@tau magic-7.1]=-# pwd
/var/tmp/portage/magic-7.1/work/magic-7.1
-=[root@tau magic-7.1]=-# cd magic
-=[root@tau magic]=-# make
--- building main magic
rm -f magic
gcc  -I. -I.. -Dlinux -DSYSV -DF_OK=0 -DW_OK=2 -D__NO_STRING_INLINES -DISC  -
DNONMANHATTAN -DMAGIC_VERSION="\"7.1\"" -DMAGIC_DATE="\"`date`\"" 
libmagic.o ../cif/libcif.o ../cmwind/libcmwind.o ../commands/libcommands.o  ../d
atabase/libdatabase.o ../dbwind/libdbwind.o ../drc/libdrc.o ../debug/libdebug.o 
../extract/libextract.o ../graphics/libgraphics.o  ../lisp/liblisp.o ../macros/l
ibmacros.o ../main/libmain.o ../misc/libmisc.o ../parser/libparser.o ../select/l
ibselect.o  ../signals/libsignals.o ../tech/libtech.o ../textio/libtextio.o ../t
iles/libtiles.o ../undo/libundo.o ../utils/libutils.o  ../windows/libwindows.o .
./wiring/libwiring.o ../plow/libplow.o ../plot/libplot.o ../resis/libresis.o ../
sim/libsim.o  ../calma/libcalma.o ../mzrouter/libmzrouter.o ../irouter/libiroute
r.o ../garouter/libgarouter.o ../router/librouter.o ../grouter/libgrouter.o ../g
cr/libgcr.o ../netmenu/libnetmenu.o  ../netlist/libnetlist.o -o magic -lX11 -
L/usr/X11R6/lib/ -lbsd  -lm
../database/libdatabase.o: In function `DBCellWrite':
../database/libdatabase.o(.text+0x7e1e): the use of `mktemp' is dangerous, 
better use `mkstemp'
../commands/libcommands.o: In function `CmdHistory':
../commands/libcommands.o(.text+0x63b4): undefined reference to `history_length'
../commands/libcommands.o(.text+0x6466): undefined reference to `history_length'
../commands/libcommands.o(.text+0x64a3): undefined reference to `history_get'
../commands/libcommands.o(.text+0x64ff): undefined reference to `history_get'
../commands/libcommands.o(.text+0x6543): undefined reference to `history_get'
collect2: ld returned 1 exit status
make: *** [magic] Error 1
</SNIP>

I was able to find all references of mktemp() via:
<QUOTE>
-=[root@tau magic-7.1]=-# pwd
/var/tmp/portage/magic-7.1/work/magic-7.1
-=[root@tau magic-7.1]=-# grep -r -i mktemp *
database/DBio.c:    mktemp(tmpname);
Binary file database/DBio.o matches
Binary file database/libdatabase.o matches
Binary file database/libdatabase.a matches
lisp/other/DBio.c:    mktemp(tmpname);
make.log:../database/libdatabase.o(.text+0x7e1e): the use of `mktemp' is 
dangerous, better use `mkstemp'
Binary file mpack/libmpack.a matches
plot/plotPixels.c:extern char *mktemp();
plot/plotPixels.c:    mktemp(fileName);
plot/plotVers.c:extern char *mktemp();
plot/plotVers.c:    mktemp(fileName);
Binary file plot/plotVers.o matches
Binary file plot/plotPixels.o matches
Binary file plot/libplot.o matches
plow/PlowRandom.c:    mktemp(goodName);
plow/PlowRandom.c:    mktemp(tempName);
prleak/prleak.c:    dupFile = uopen(mktemp(dupName), "w");
prleak/prleak.c:    fd = uopen(mktemp(leakName), "w");
prleak/prleak.c:    all = uopen(mktemp(allName), "w");
</QUOTE>

Changing the ASCII file entries to "mkstemp()" solved the problem.

Here's what these errors translate into when running the ebuild script; for the 
most part, they remain hidden:

Complete Ebuild Compilation Output:

>>> Unpacking source...
>>> Unpacking /magic-current.tar.gz
patching file magic-7.1/misc/paths.h
>>> Source unpacked.
--- making libraries
--- making modules
--- compiling database/DBbound.o
--- compiling calma/CalmaRead.o
DBbound.c:21:9: warning: extra tokens at end of #endif directive
CalmaRead.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../cif/cif.h:27:9: warning: extra tokens at end of #endif directive
../cif/cif.h:30:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:26:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:29:9: warning: extra tokens at end of #endif directive
../cif/CIFread.h:26:9: warning: extra tokens at end of #endif directive
../cif/CIFread.h:29:9: warning: extra tokens at end of #endif directive
../calma/calmaInt.h:24:9: warning: extra tokens at end of #endif directive
../calma/calmaInt.h:27:9: warning: extra tokens at end of #endif directive
../calma/calmaInt.h:30:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
--- compiling database/DBcell.o
CalmaRead.c:202:9: warning: extra tokens at end of #endif directive
CalmaRead.c:221:9: warning: extra tokens at end of #endif directive
CalmaRead.c:244:9: warning: extra tokens at end of #endif directive
DBcell.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
DBcell.c:236:9: warning: extra tokens at end of #endif directive
--- compiling calma/CalmaRdcl.o
DBcell.c:301:9: warning: extra tokens at end of #endif directive
CalmaRdcl.c:22:9: warning: extra tokens at end of #endif directive
DBcell.c:373:9: warning: extra tokens at end of #endif directive
DBcell.c:382:9: warning: extra tokens at end of #endif directive
DBcell.c:392:9: warning: extra tokens at end of #endif directive
DBcell.c:402:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../cif/cif.h:27:9: warning: extra tokens at end of #endif directive
../cif/cif.h:30:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:26:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:29:9: warning: extra tokens at end of #endif directive
../cif/CIFread.h:26:9: warning: extra tokens at end of #endif directive
../cif/CIFread.h:29:9: warning: extra tokens at end of #endif directive
DBcell.c:482:9: warning: extra tokens at end of #endif directive
DBcell.c:496:9: warning: extra tokens at end of #endif directive
DBcell.c:549:9: warning: extra tokens at end of #endif directive
DBcell.c:612:9: warning: extra tokens at end of #endif directive
DBcell.c:636:9: warning: extra tokens at end of #endif directive
../calma/calmaInt.h:24:9: warning: extra tokens at end of #endif directive
../calma/calmaInt.h:27:9: warning: extra tokens at end of #endif directive
../calma/calmaInt.h:30:9: warning: extra tokens at end of #endif directive
--- compiling database/DBcellbox.o
DBcellbox.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
--- compiling calma/CalmaRdio.o
CalmaRdio.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../cif/cif.h:27:9: warning: extra tokens at end of #endif directive
../cif/cif.h:30:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:26:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:29:9: warning: extra tokens at end of #endif directive
../cif/CIFread.h:26:9: warning: extra tokens at end of #endif directive
../cif/CIFread.h:29:9: warning: extra tokens at end of #endif directive
../calma/calmaInt.h:24:9: warning: extra tokens at end of #endif directive
../calma/calmaInt.h:27:9: warning: extra tokens at end of #endif directive
../calma/calmaInt.h:30:9: warning: extra tokens at end of #endif directive
--- compiling database/DBcellcopy.o
DBcellcopy.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
--- compiling calma/CalmaRdpt.o
CalmaRdpt.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../cif/cif.h:27:9: warning: extra tokens at end of #endif directive
../cif/cif.h:30:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:26:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:29:9: warning: extra tokens at end of #endif directive
../cif/CIFread.h:26:9: warning: extra tokens at end of #endif directive
../cif/CIFread.h:29:9: warning: extra tokens at end of #endif directive
../calma/calmaInt.h:24:9: warning: extra tokens at end of #endif directive
../calma/calmaInt.h:27:9: warning: extra tokens at end of #endif directive
../calma/calmaInt.h:30:9: warning: extra tokens at end of #endif directive
--- compiling database/DBcellname.o
DBcellname.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../select/select.h:27:9: warning: extra tokens at end of #endif directive
../select/select.h:30:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
--- compiling calma/CalmaWrite.o
CalmaWrite.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../cif/cif.h:27:9: warning: extra tokens at end of #endif directive
../cif/cif.h:30:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:26:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:29:9: warning: extra tokens at end of #endif directive
../calma/calmaInt.h:24:9: warning: extra tokens at end of #endif directive
../calma/calmaInt.h:27:9: warning: extra tokens at end of #endif directive
../calma/calmaInt.h:30:9: warning: extra tokens at end of #endif directive
--- compiling database/DBcellsrch.o
DBcellsrch.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
--- compiling database/DBcellsel.o
DBcellsel.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
--- linking libcalma.o
--- compiling cif/CIFgen.o
CIFgen.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../cif/CIFint.h:26:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:29:9: warning: extra tokens at end of #endif directive
--- compiling database/DBcellsubr.o
DBcellsubr.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
--- compiling database/DBconnect.o
DBconnect.c:24:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling database/DBcount.o
DBcount.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
--- compiling database/DBexpand.o
DBexpand.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../utils/stack.h:27:9: warning: extra tokens at end of #endif directive
--- compiling database/DBio.o
DBio.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling cif/CIFhier.o
CIFhier.c:26:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../cif/CIFint.h:26:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:29:9: warning: extra tokens at end of #endif directive
../cif/cif.h:27:9: warning: extra tokens at end of #endif directive
../cif/cif.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling cif/CIFmain.o
--- compiling database/DBlabel.o
CIFmain.c:21:9: warning: extra tokens at end of #endif directive
DBlabel.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../cif/CIFint.h:26:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:29:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
--- compiling cif/CIFrdcl.o
CIFrdcl.c:23:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../cif/CIFint.h:26:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:29:9: warning: extra tokens at end of #endif directive
../cif/CIFread.h:26:9: warning: extra tokens at end of #endif directive
../cif/CIFread.h:29:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
--- compiling database/DBlabel2.o
DBlabel2.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling database/DBpaint2.o
DBpaint2.c:21:9: warning: extra tokens at end of #endif directive
--- compiling cif/CIFrdpt.o
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
CIFrdpt.c:22:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:26:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:29:9: warning: extra tokens at end of #endif directive
../cif/CIFread.h:26:9: warning: extra tokens at end of #endif directive
../cif/CIFread.h:29:9: warning: extra tokens at end of #endif directive
--- compiling database/DBpaint.o
DBpaint.c:26:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
DBpaint.c:62:9: warning: extra tokens at end of #endif directive
DBpaint.c:228:9: warning: extra tokens at end of #endif directive
DBpaint.c:419:9: warning: extra tokens at end of #endif directive
DBpaint.c:439:9: warning: extra tokens at end of #endif directive
DBpaint.c:488:9: warning: extra tokens at end of #endif directive
DBpaint.c:497:9: warning: extra tokens at end of #endif directive
DBpaint.c:506:9: warning: extra tokens at end of #endif directive
--- compiling cif/CIFrdpoly.o
CIFrdpoly.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../cif/CIFint.h:26:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:29:9: warning: extra tokens at end of #endif directive
../cif/CIFread.h:26:9: warning: extra tokens at end of #endif directive
../cif/CIFread.h:29:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling cif/CIFrdtech.o
CIFrdtech.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
DBpaint.c:655:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
DBpaint.c:840:9: warning: extra tokens at end of #endif directive
DBpaint.c:860:9: warning: extra tokens at end of #endif directive
DBpaint.c:909:9: warning: extra tokens at end of #endif directive
DBpaint.c:918:9: warning: extra tokens at end of #endif directive
DBpaint.c:927:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:26:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:29:9: warning: extra tokens at end of #endif directive
../cif/CIFread.h:26:9: warning: extra tokens at end of #endif directive
../cif/CIFread.h:29:9: warning: extra tokens at end of #endif directive
../calma/calmaInt.h:24:9: warning: extra tokens at end of #endif directive
../calma/calmaInt.h:27:9: warning: extra tokens at end of #endif directive
../calma/calmaInt.h:30:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
DBpaint.c:1046:9: warning: extra tokens at end of #endif directive
DBpaint.c:1164:9: warning: extra tokens at end of #endif directive
DBpaint.c:1207:9: warning: extra tokens at end of #endif directive
DBpaint.c:1216:9: warning: extra tokens at end of #endif directive
--- compiling cif/CIFrdutils.o
CIFrdutils.c:23:9: warning: extra tokens at end of #endif directive
DBpaint.c:1681:9: warning: extra tokens at end of #endif directive
DBpaint.c:1751:9: warning: extra tokens at end of #endif directive
DBpaint.c:1821:9: warning: extra tokens at end of #endif directive
DBpaint.c:1874:9: warning: extra tokens at end of #endif directive
DBpaint.c:1883:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../cif/CIFint.h:26:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:29:9: warning: extra tokens at end of #endif directive
../cif/CIFread.h:26:9: warning: extra tokens at end of #endif directive
../cif/CIFread.h:29:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
DBpaint.c:2040:9: warning: extra tokens at end of #endif directive
DBpaint.c:2055:9: warning: extra tokens at end of #endif directive
DBpaint.c:2073:9: warning: extra tokens at end of #endif directive
DBpaint.c:2085:9: warning: extra tokens at end of #endif directive
DBpaint.c:2094:9: warning: extra tokens at end of #endif directive
DBpaint.c:2103:9: warning: extra tokens at end of #endif directive
CIFrdutils.c:1073:8: warning: extra tokens at end of #endif directive
DBpaint.c:2188:9: warning: extra tokens at end of #endif directive
DBpaint.c:2297:9: warning: extra tokens at end of #endif directive
DBpaint.c:2344:9: warning: extra tokens at end of #endif directive
DBpaint.c:2354:9: warning: extra tokens at end of #endif directive
DBpaint.c:2364:9: warning: extra tokens at end of #endif directive
CIFrdutils.c:106: warning: passing arg 0 of `CIFReadError' makes pointer from 
integer without a cast
CIFrdutils.c:106: warning: passing arg 0 of `CIFReadError' makes pointer from 
integer without a cast
CIFrdutils.c:106: warning: passing arg 0 of `CIFReadError' makes pointer from 
integer without a cast
CIFrdutils.c:106: warning: passing arg 0 of `CIFReadError' makes pointer from 
integer without a cast
CIFrdutils.c:106: warning: passing arg 0 of `CIFReadError' makes pointer from 
integer without a cast
CIFrdutils.c:106: warning: passing arg 0 of `CIFReadError' makes pointer from 
integer without a cast
DBpaint.c:2523:9: warning: extra tokens at end of #endif directive
DBpaint.c:2537:9: warning: extra tokens at end of #endif directive
DBpaint.c:2559:9: warning: extra tokens at end of #endif directive
DBpaint.c:2575:9: warning: extra tokens at end of #endif directive
DBpaint.c:2584:9: warning: extra tokens at end of #endif directive
DBpaint.c:2593:9: warning: extra tokens at end of #endif directive
DBpaint.c:2678:9: warning: extra tokens at end of #endif directive
DBpaint.c:2762:9: warning: extra tokens at end of #endif directive
DBpaint.c:2809:9: warning: extra tokens at end of #endif directive
DBpaint.c:2818:9: warning: extra tokens at end of #endif directive
DBpaint.c:2827:9: warning: extra tokens at end of #endif directive
CIFrdutils.c:106: warning: passing arg 0 of `CIFReadError' makes pointer from 
integer without a cast
CIFrdutils.c:106: warning: passing arg 0 of `CIFReadError' makes pointer from 
integer without a cast
DBpaint.c:2989:9: warning: extra tokens at end of #endif directive
DBpaint.c:3002:9: warning: extra tokens at end of #endif directive
DBpaint.c:3020:9: warning: extra tokens at end of #endif directive
DBpaint.c:3033:9: warning: extra tokens at end of #endif directive
DBpaint.c:3043:9: warning: extra tokens at end of #endif directive
DBpaint.c:3052:9: warning: extra tokens at end of #endif directive
DBpaint.c:3100:9: warning: extra tokens at end of #endif directive
CIFrdutils.c:106: warning: passing arg 0 of `CIFReadError' makes pointer from 
integer without a cast
CIFrdutils.c:106: warning: passing arg 0 of `CIFReadError' makes pointer from 
integer without a cast
--- compiling database/DBprop.o
DBprop.c:24:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling database/DBtech.o
DBtech.c:24:9: warning: extra tokens at end of #endif directive
CIFrdutils.c:106: warning: passing arg 0 of `CIFReadError' makes pointer from 
integer without a cast
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
CIFrdutils.c:106: warning: passing arg 0 of `CIFReadError' makes pointer from 
integer without a cast
CIFrdutils.c:106: warning: passing arg 0 of `CIFReadError' makes pointer from 
integer without a cast
--- compiling cif/CIFsee.o
CIFsee.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../cif/CIFint.h:26:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:29:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
--- compiling cif/CIFtech.o
CIFtech.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../cif/CIFint.h:26:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:29:9: warning: extra tokens at end of #endif directive
../calma/calmaInt.h:24:9: warning: extra tokens at end of #endif directive
../calma/calmaInt.h:27:9: warning: extra tokens at end of #endif directive
../calma/calmaInt.h:30:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling database/DBtcontact.o
DBtcontact.c:27:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
DBtcontact.c:468: warning: passing arg 0 of `dbTechSrResidues' from 
incompatible pointer type
DBtcontact.c:468: warning: passing arg 0 of `dbTechSrResidues' from 
incompatible pointer type
--- compiling database/DBtechname.o
DBtechname.c:24:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling cif/CIFwrite.o
CIFwrite.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../utils/stack.h:27:9: warning: extra tokens at end of #endif directive
../cif/cif.h:27:9: warning: extra tokens at end of #endif directive
../cif/cif.h:30:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:26:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:29:9: warning: extra tokens at end of #endif directive
--- compiling database/DBtpaint.o
DBtpaint.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
--- linking libcif.o
--- compiling cmwind/CMWmain.o
CMWmain.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
../cmwind/cmwind.h:26:9: warning: extra tokens at end of #endif directive
../cmwind/cmwind.h:29:9: warning: extra tokens at end of #endif directive
../cmwind/cmwind.h:32:9: warning: extra tokens at end of #endif directive
../graphics/graphicsInt.h:55:8: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling cmwind/CMWcmmnds.o
CMWcmmnds.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
../cmwind/cmwind.h:26:9: warning: extra tokens at end of #endif directive
../cmwind/cmwind.h:29:9: warning: extra tokens at end of #endif directive
../cmwind/cmwind.h:32:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
--- compiling database/DBtpaint2.o
DBtpaint2.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
--- compiling cmwind/CMWundo.o
CMWundo.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../cmwind/cmwind.h:26:9: warning: extra tokens at end of #endif directive
../cmwind/cmwind.h:29:9: warning: extra tokens at end of #endif directive
../cmwind/cmwind.h:32:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
--- compiling cmwind/CMWrgbhsv.o
CMWrgbhsv.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
--- linking libcmwind.o
--- compiling commands/CmdINTERP.o
CmdINTERP.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
CmdINTERP.c:96:9: warning: extra tokens at end of #endif directive
CmdINTERP.c:102:9: warning: extra tokens at end of #endif directive
CmdINTERP.c:127:9: warning: extra tokens at end of #endif directive
CmdINTERP.c:209:9: warning: extra tokens at end of #endif directive
CmdINTERP.c:254:9: warning: extra tokens at end of #endif directive
CmdINTERP.c:270:9: warning: extra tokens at end of #endif directive
CmdINTERP.c:278:9: warning: extra tokens at end of #endif directive
CmdINTERP.c:303:9: warning: extra tokens at end of #endif directive
CmdINTERP.c:364:9: warning: extra tokens at end of #endif directive
CmdINTERP.c:400:9: warning: extra tokens at end of #endif directive
CmdINTERP.c:414:9: warning: extra tokens at end of #endif directive
--- compiling commands/CmdSubrs.o
CmdSubrs.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
--- compiling database/DBtechtype.o
DBtechtype.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling commands/SWCmds.o
SWCmds.c:21:9: warning: extra tokens at end of #endif directive
SWCmds.c:248:9: warning: extra tokens at end of #endif directive
--- compiling commands/CmdAB.o
CmdAB.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
CmdAB.c:210:9: warning: extra tokens at end of #endif directive
--- compiling commands/CmdCD.o
CmdCD.c:21:9: warning: extra tokens at end of #endif directive
--- compiling database/DBterminal.o
DBterminal.c:23:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../cif/cif.h:27:9: warning: extra tokens at end of #endif directive
../cif/cif.h:30:9: warning: extra tokens at end of #endif directive
../select/select.h:27:9: warning: extra tokens at end of #endif directive
../select/select.h:30:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
--- compiling database/DBtiles.o
DBtiles.c:23:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling database/DBtimestmp.o
DBtimestmp.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling database/DBundo.o
DBundo.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
--- compiling commands/CmdE.o
CmdE.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
../select/select.h:27:9: warning: extra tokens at end of #endif directive
../select/select.h:30:9: warning: extra tokens at end of #endif directive
--- compiling database/DBmain.o
DBmain.c:28:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
DBmain.c:104:8: warning: extra tokens at end of #endif directive
--- compiling utils/args.o
args.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
--- compiling utils/child.o
--- compiling commands/CmdFI.o
CmdFI.c:21:9: warning: extra tokens at end of #endif directive
child.c:17:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
child.c:94: warning: passing arg 0 of `get_next' makes pointer from integer 
without a cast
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
--- compiling utils/doubleint.o
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../select/select.h:27:9: warning: extra tokens at end of #endif directive
../select/select.h:30:9: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
doubleint.c:31:8: warning: extra tokens at end of #endif directive
--- compiling utils/finddisp.o
finddisp.c:25:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
--- compiling utils/flock.o
flock.c:22:9: warning: extra tokens at end of #endif directive
--- compiling utils/flsbuf.o
flsbuf.c:26:9: warning: extra tokens at end of #endif directive
flsbuf.c:187:8: warning: extra tokens at end of #else directive
flsbuf.c:197:8: warning: extra tokens at end of #endif directive
--- compiling utils/geometry.o
geometry.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
--- compiling utils/getrect.o
getrect.c:23:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
--- compiling commands/CmdLQ.o
CmdLQ.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
--- compiling utils/hash.o
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../select/select.h:27:9: warning: extra tokens at end of #endif directive
../select/select.h:30:9: warning: extra tokens at end of #endif directive
hash.c:23:9: warning: extra tokens at end of #endif directive
../plot/plot.h:26:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
CmdLQ.c:903:9: warning: extra tokens at end of #endif directive
CmdLQ.c:1069:9: warning: extra tokens at end of #endif directive
--- compiling utils/heap.o
heap.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling commands/CmdRS.o
CmdRS.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/stack.h:27:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../select/select.h:27:9: warning: extra tokens at end of #endif directive
../select/select.h:30:9: warning: extra tokens at end of #endif directive
--- compiling utils/list.o
list.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../utils/list.h:32:9: warning: extra tokens at end of #endif directive
--- compiling utils/lookup.o
lookup.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
--- compiling utils/lookupany.o
lookupany.c:23:9: warning: extra tokens at end of #endif directive
--- compiling utils/lookupfull.o
lookupfull.c:23:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
--- compiling utils/malloc.o
malloc.c:24:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
malloc.c:70:9: warning: extra tokens at end of #endif directive
malloc.c:1272:9: warning: extra tokens at end of #endif directive
--- compiling utils/match.o
match.c:20:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
--- compiling utils/path.o
path.c:21:9: warning: extra tokens at end of #endif directive
CmdRS.c:1553:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling utils/pathvisit.o
pathvisit.c:23:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling utils/port.o
port.c:20:9: warning: extra tokens at end of #endif directive
--- compiling commands/CmdTZ.o
CmdTZ.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling utils/printstuff.o
../misc/magic.h:102:9: warning: gcc -march=pentium2 -O3 -pipe -fomit-frame-
pointer -ffast-math -fforce-addr -falign-functions=4 -funroll-loops -I. -I.. -
Dlinux -DSYSV -DF_OK=0 -DW_OK=2 -D__NO_STRING_INLINES -DISC -DUSE_READLINE -
DHAVE_READLINE -DNONMANHATTAN  -c printstuff.c
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: printstuff.c:3:8: warning: extra tokens at end of 
#endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../select/select.h:27:9: warning: extra tokens at end of #endif directive
../select/select.h:30:9: warning: extra tokens at end of #endif directive
../wiring/wiring.h:26:9: warning: extra tokens at end of #endif directive
../wiring/wiring.h:29:9: warning: extra tokens at end of #endif directive
CmdTZ.c:50:9: warning: extra tokens at end of #endif directive
--- compiling utils/stack.o
stack.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/stack.h:27:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
CmdTZ.c:979:9: warning: extra tokens at end of #endif directive
--- compiling utils/strdup.o
strdup.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling utils/dqueue.o
dqueue.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/dqueue.h:29:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling commands/CmdWizard.o
CmdWizard.c:24:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
CmdWizard.c:72:9: warning: extra tokens at end of #endif directive
--- compiling utils/runstats.o
runstats.c:23:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
--- compiling utils/saveimage.o
saveimage.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
saveimage.c:35:9: warning: extra tokens at end of #endif directive
saveimage.c:214:8: warning: extra tokens at end of #endif directive
--- compiling utils/set.o
set.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../utils/list.h:32:9: warning: extra tokens at end of #endif directive
--- compiling utils/show.o
show.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
--- compiling utils/touchtypes.o
touchtypes.c:22:8: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
--- compiling utils/LIBdbio.o
LIBdbio.c:22:9: warning: extra tokens at end of #endif directive
--- linking libcommands.o
--- compiling utils/LIBmain.o
LIBmain.c:22:9: warning: extra tokens at end of #endif directive
--- linking libdatabase.o
--- compiling utils/LIBtextio.o
--- compiling dbwind/DBWdisplay.o
LIBtextio.c:22:9: warning: extra tokens at end of #endif directive
DBWdisplay.c:23:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
--- archiving libutils.a
DBWdisplay.c:482:9: warning: extra tokens at end of #endif directive
--- compiling extflat/EFargs.o
EFargs.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extflat/extflat.h:24:9: warning: extra tokens at end of #endif directive
../extflat/EFint.h:24:9: warning: extra tokens at end of #endif directive
--- compiling extflat/EFbuild.o
EFbuild.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extflat/extflat.h:24:9: warning: extra tokens at end of #endif directive
../extflat/EFint.h:24:9: warning: extra tokens at end of #endif directive
EFbuild.c:304:9: warning: extra tokens at end of #endif directive
--- compiling dbwind/DBWbuttons.o
DBWbuttons.c:25:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
--- compiling extflat/EFdef.o
EFdef.c:23:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extflat/extflat.h:24:9: warning: extra tokens at end of #endif directive
../extflat/EFint.h:24:9: warning: extra tokens at end of #endif directive
EFdef.c:67:9: warning: extra tokens at end of #endif directive
EFdef.c:152:9: warning: extra tokens at end of #endif directive
--- compiling dbwind/DBWfdback.o
DBWfdback.c:25:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling extflat/EFflat.o
EFflat.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extflat/extflat.h:24:9: warning: extra tokens at end of #endif directive
../extflat/EFint.h:24:9: warning: extra tokens at end of #endif directive
EFflat.c:158:9: warning: extra tokens at end of #endif directive
--- compiling dbwind/DBWhlights.o
DBWhlights.c:24:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../graphics/graphicsInt.h:55:8: warning: extra tokens at end of #endif directive
--- compiling dbwind/DBWprocs.o
DBWprocs.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling extflat/EFhier.o
EFhier.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extflat/extflat.h:24:9: warning: extra tokens at end of #endif directive
../extflat/EFint.h:24:9: warning: extra tokens at end of #endif directive
EFhier.c:193:9: warning: extra tokens at end of #endif directive
--- compiling extflat/EFname.o
EFname.c:21:9: warning: extra tokens at end of #endif directive
--- compiling dbwind/DBWtools.o
DBWtools.c:28:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extflat/extflat.h:24:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../extflat/EFint.h:24:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
--- compiling extflat/EFread.o
EFread.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../extflat/extflat.h:24:9: warning: extra tokens at end of #endif directive
../extflat/EFint.h:24:9: warning: extra tokens at end of #endif directive
--- compiling dbwind/DBWundo.o
DBWundo.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
--- linking libdbwind.o
--- compiling debug/debugFlags.o
debugFlags.c:23:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling extflat/EFsym.o
EFsym.c:29:9: warning: extra tokens at end of #endif directive
--- compiling debug/hist.o
hist.c:20:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extflat/extflat.h:24:9: warning: extra tokens at end of #endif directive
../extflat/EFint.h:24:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling extflat/EFvisit.o
EFvisit.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extflat/extflat.h:24:9: warning: extra tokens at end of #endif directive
../extflat/EFint.h:24:9: warning: extra tokens at end of #endif directive
--- linking libdebug.o
--- compiling drc/DRCarray.o
DRCarray.c:24:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
--- compiling drc/DRCbasic.o
DRCbasic.c:24:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
--- archiving libextflat.a
--- compiling drc/DRCcontin.o
DRCcontin.c:24:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling drc/DRCmain.o
--- compiling drc/DRCsubcell.o
DRCmain.c:23:9: warning: extra tokens at end of #endif directive
DRCsubcell.c:23:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9:../drc/drc.h:180:9: warning: extra tokens at end of #endif 
directive
 warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
DRCmain.c:109:9: warning: extra tokens at end of #endif directive
DRCmain.c:123:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
DRCmain.c:225:9: warning: extra tokens at end of #endif directive
DRCmain.c:275:9: warning: extra tokens at end of #endif directive
--- compiling drc/DRCtech.o
DRCtech.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../cif/cif.h:27:9: warning: extra tokens at end of #endif directive
../cif/cif.h:30:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:26:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:29:9: warning: extra tokens at end of #endif directive
--- compiling drc/DRCprint.o
DRCprint.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
--- compiling drc/DRCextend.o
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
../utils/stack.h:27:9: warning: extra tokens at end of #endif directive
--- compiling drc/DRCcif.o
DRCcif.c:28:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
../cif/cif.h:27:9: warning: extra tokens at end of #endif directive
../cif/cif.h:30:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:26:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:29:9: warning: extra tokens at end of #endif directive
../utils/stack.h:27:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- linking libdrc.o
--- linking libextflat.o
--- compiling extract/ExtArray.o
--- compiling extract/ExtBasic.o
ExtBasic.c:22:9: warning: extra tokens at end of #endif directive
ExtArray.c:23:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
../utils/stack.h:27:9: warning: extra tokens at end of #endif directive
--- compiling extract/ExtCell.o
ExtCell.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
../utils/stack.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
--- compiling extract/ExtCouple.o
ExtCouple.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
--- compiling extract/ExtHard.o
ExtHard.c:24:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
--- compiling extract/ExtHier.o
ExtHier.c:24:9: warning: extra tokens at end of #endif directive
--- compiling extract/ExtLength.o
ExtLength.c:27:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
../utils/stack.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
--- compiling extract/ExtMain.o
ExtMain.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
../utils/stack.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
--- compiling extract/ExtNghbors.o
ExtNghbors.c:24:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
../utils/stack.h:27:9: warning: extra tokens at end of #endif directive
--- compiling extract/ExtPerim.o
ExtPerim.c:23:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../utils/stack.h:27:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
--- compiling extract/ExtRegion.o
ExtRegion.c:23:9: warning: extra tokens at end of #endif directive
--- compiling extract/ExtSubtree.o
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
ExtSubtree.c:27:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
ExtSubtree.c:53:9: warning: extra tokens at end of #endif directive
ExtSubtree.c:181:9: warning: extra tokens at end of #else directive
ExtSubtree.c:213:9: warning: extra tokens at end of #endif directive
ExtSubtree.c:263:9: warning: extra tokens at end of #endif directive
ExtSubtree.c:323:9: warning: extra tokens at end of #endif directive
ExtSubtree.c:334:9: warning: extra tokens at end of #endif directive
--- compiling extract/ExtTech.o
ExtTech.c:23:9: warning: extra tokens at end of #endif directive
ExtSubtree.c:650:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:26:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:29:9: warning: extra tokens at end of #endif directive
--- compiling extract/ExtTest.o
ExtTest.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
--- compiling extract/ExtTimes.o
ExtTimes.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
--- compiling extract/ExtYank.o
ExtYank.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
--- compiling extract/ExtInter.o
ExtInter.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
--- compiling extract/ExtUnique.o
ExtUnique.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
../utils/stack.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
--- linking libextract.o
--- compiling garouter/gaChannel.o
--- compiling garouter/gaMain.o
gaChannel.c:21:9: warning: extra tokens at end of #endif directive
gaMain.c:209:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
--- compiling garouter/gaMaze.o
gaMaze.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
../utils/list.h:32:9: warning: extra tokens at end of #endif directive
--- compiling garouter/gaSimple.o
--- compiling garouter/gaStem.o
gaSimple.c:23:9: warning: extra tokens at end of #endif directive
gaStem.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
--- compiling garouter/gaTest.o
gaTest.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
--- linking libgarouter.o
--- compiling gcr/gcrChannel.o
--- compiling gcr/gcrColl.o
gcrColl.c:20:9: warning: extra tokens at end of #endif directive
gcrChannel.c:24:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
gcrChannel.c:103:9: warning: extra tokens at end of #endif directive
gcrChannel.c:188:9: warning: extra tokens at end of #endif directive
gcrChannel.c:287:9: warning: extra tokens at end of #endif directive
gcrChannel.c:295:9: warning: extra tokens at end of #endif directive
--- compiling gcr/gcrDebug.o
gcrDebug.c:20:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
gcrChannel.c:404:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
gcrChannel.c:485:9: warning: extra tokens at end of #endif directive
gcrDebug.c:382:9: warning: extra tokens at end of #endif directive
gcrDebug.c:391:9: warning: extra tokens at end of #endif directive
gcrDebug.c:400:9: warning: extra tokens at end of #endif directive
gcrDebug.c:408:9: warning: extra tokens at end of #endif directive
--- compiling gcr/gcrEdge.o
gcrEdge.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
--- compiling gcr/gcrFeas.o
gcrFeas.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
--- compiling gcr/gcrFlags.o
gcrFlags.c:35:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
--- compiling gcr/gcrInit.o
gcrInit.c:20:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
gcrInit.c:45:9: warning: extra tokens at end of #endif directive
--- compiling gcr/gcrLib.o
gcrLib.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling gcr/gcrRiver.o
gcrRiver.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling gcr/gcrRoute.o
gcrRoute.c:20:9: warning: extra tokens at end of #endif directive
--- compiling gcr/gcrShwFlgs.o
gcrShwFlgs.c:20:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
--- compiling gcr/gcrUnsplit.o
gcrUnsplit.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- linking libgcr.o
--- compiling graphics/grMain.o
--- compiling graphics/grLock.o
grLock.c:31:9: warning: extra tokens at end of #endif directive
grMain.c:23:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../graphics/graphicsInt.h:55:8: warning: extra tokens at end of #endif directive
grMain.c:120:9: warning: extra tokens at end of #endif directive
grMain.c:124:9: warning: extra tokens at end of #endif directive
grMain.c:156:9: warning: extra tokens at end of #endif directive
grMain.c:159:9: warning: extra tokens at end of #endif directive
grMain.c:166:9: warning: extra tokens at end of #endif directive
grMain.c:170:9: warning: extra tokens at end of #endif directive
grMain.c:197:9: warning: extra tokens at end of #endif directive
grMain.c:200:9: warning: extra tokens at end of #endif directive
grMain.c:207:9: warning: extra tokens at end of #endif directive
grMain.c:211:9: warning: extra tokens at end of #endif directive
grMain.c:215:9: warning: extra tokens at end of #endif directive
grMain.c:272:8: warning: extra tokens at end of #endif directive
grMain.c:305:9: warning: extra tokens at end of #endif directive
grMain.c:440:9: warning: extra tokens at end of #else directive
grMain.c:442:9: warning: extra tokens at end of #endif directive
grMain.c:496:9: warning: extra tokens at end of #endif directive
grMain.c:533:9: warning: extra tokens at end of #endif directive
--- compiling graphics/grDStyle.o
grDStyle.c:20:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../graphics/graphicsInt.h:55:8: warning: extra tokens at end of #endif directive
--- compiling graphics/grText.o
grText.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../graphics/graphicsInt.h:55:8: warning: extra tokens at end of #endif directive
--- compiling graphics/grCMap.o
--- compiling graphics/grClip.o
grCMap.c:21:9: warning: extra tokens at end of #endif directive
grClip.c:23:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../graphics/graphicsInt.h:55:8: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../graphics/graphicsInt.h:55:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling graphics/grGlyphs.o
grGlyphs.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../graphics/graphicsInt.h:55:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling graphics/grNull.o
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../graphics/graphicsInt.h:55:8: warning: extra tokens at end of #endif directive
grNull.c:35:9: warning: extra tokens at end of #endif directive
--- compiling graphics/grX11su1.o
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../graphics/graphicsInt.h:55:8: warning: extra tokens at end of #endif directive
grClip.c:1049:8: warning: extra tokens at end of #endif directive
grX11su1.c:1027:9: warning: extra tokens at end of #endif directive
--- compiling graphics/grX11su2.o
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../graphics/graphicsInt.h:55:8: warning: extra tokens at end of #endif directive
--- compiling graphics/grX11su3.o
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../graphics/graphicsInt.h:55:8: warning: extra tokens at end of #endif directive
--- compiling graphics/grX11su4.o
grX11su2.c:665:8: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../graphics/graphicsInt.h:55:8: warning: extra tokens at end of #endif directive
--- compiling graphics/grX11su5.o
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../graphics/graphicsInt.h:55:8: warning: extra tokens at end of #endif directive
--- linking libgraphics.o
--- compiling grouter/grouteChan.o
--- compiling grouter/grouteCrss.o
grouteCrss.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling grouter/grouteDens.o
grouteDens.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling grouter/grouteMain.o
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling grouter/grouteMult.o
grouteMult.c:25:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling grouter/grouteMaze.o
grouteMaze.c:26:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
--- compiling grouter/groutePath.o
groutePath.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling grouter/groutePen.o
groutePen.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../utils/list.h:32:9: warning: extra tokens at end of #endif directive
groutePen.c:240:9: warning: extra tokens at end of #endif directive
--- compiling grouter/grouteTest.o
grouteTest.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- linking libgrouter.o
--- compiling irouter/irCommand.o
--- compiling irouter/irMain.o
irMain.c:26:9: warning: extra tokens at end of #endif directive
irCommand.c:27:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
../select/select.h:27:9: warning: extra tokens at end of #endif directive
../select/select.h:30:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../utils/list.h:32:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../utils/list.h:32:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
--- compiling irouter/irRoute.o
irRoute.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../utils/list.h:32:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../select/select.h:27:9: warning: extra tokens at end of #endif directive
../select/select.h:30:9: warning: extra tokens at end of #endif directive
--- compiling irouter/irTestCmd.o
irTestCmd.c:23:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../utils/list.h:32:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
--- compiling irouter/irUtils.o
irUtils.c:23:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../utils/list.h:32:9: warning: extra tokens at end of #endif directive
--- linking libirouter.o
--- compiling lisp/lispMain.o
--- compiling lisp/lispEval.o
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling lisp/lispPrint.o
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling lisp/lispParse.o
--- compiling lisp/lispA-Z.o
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling lisp/lispGC.o
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling lisp/lispFrame.o
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling lisp/lispTrace.o
--- compiling lisp/lispMagic.o
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
../select/select.h:27:9: warning: extra tokens at end of #endif directive
../select/select.h:30:9: warning: extra tokens at end of #endif directive
--- compiling lisp/lispArith.o
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling lisp/lispString.o
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling lisp/lispIO.o
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- linking liblisp.o
--- compiling macros/macros.o
macros.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- linking libmacros.o
--- compiling main/main.o
main.c:23:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
../cif/cif.h:27:9: warning: extra tokens at end of #endif directive
../cif/cif.h:30:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../wiring/wiring.h:26:9: warning: extra tokens at end of #endif directive
../wiring/wiring.h:29:9: warning: extra tokens at end of #endif directive
../plot/plot.h:26:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../utils/list.h:32:9: warning: extra tokens at end of #endif directive
main.c:64:9: warning: extra tokens at end of #endif directive
main.c:542:9: warning: extra tokens at end of #endif directive
main.c:644:9: warning: extra tokens at end of #endif directive
main.c:761: warning: passing arg 2 of `strcpy' makes pointer from integer 
without a cast
main.c:868:8: warning: extra tokens at end of #endif directive
main.c:900:8: warning: extra tokens at end of #endif directive
main.c:916:8: warning: extra tokens at end of #endif directive
--- linking libmain.o
--- compiling misc/niceabort.o
--- compiling misc/patchlevel.o
patchlevel.c:21:9: warning: extra tokens at end of #endif directive
niceabort.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
--- linking libmisc.o
--- compiling mzrouter/mzBlock.o
--- compiling mzrouter/mzDebug.o
mzBlock.c:57:9: warning: extra tokens at end of #endif directive
mzDebug.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../utils/list.h:32:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../utils/list.h:32:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
--- compiling mzrouter/mzEstimate.o
mzEstimate.c:91:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../utils/list.h:32:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
--- compiling mzrouter/mzXtndDown.o
mzXtndDown.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/list.h:32:9: warning: extra tokens at end of #endif directive
--- compiling mzrouter/mzXtndLeft.o
mzXtndLeft.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
--- compiling mzrouter/mzXtndRght.o
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/list.h:32:9: warning: extra tokens at end of #endif directive
mzXtndRght.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/list.h:32:9: warning: extra tokens at end of #endif directive
--- compiling mzrouter/mzXtndUp.o
mzXtndUp.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
--- compiling mzrouter/mzHint.o
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/list.h:32:9: warning: extra tokens at end of #endif directive
mzHint.c:26:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../utils/list.h:32:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
--- compiling mzrouter/mzInit.o
mzInit.c:23:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
../select/select.h:27:9: warning: extra tokens at end of #endif directive
../select/select.h:30:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../utils/list.h:32:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
--- compiling mzrouter/mzNumLine.o
mzNumLine.c:24:9: warning: extra tokens at end of #endif directive
--- compiling mzrouter/mzMain.o
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
mzMain.c:27:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../utils/list.h:32:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
../select/select.h:27:9: warning: extra tokens at end of #endif directive
../select/select.h:30:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../utils/list.h:32:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
--- compiling mzrouter/mzSearch.o
mzSearch.c:127:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../utils/list.h:32:9: warning: extra tokens at end of #endif directive
--- compiling mzrouter/mzStart.o
mzStart.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/list.h:32:9: warning: extra tokens at end of #endif directive
--- compiling mzrouter/mzSubrs.o
mzSubrs.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
--- compiling mzrouter/mzTech.o
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
../select/select.h:27:9: warning: extra tokens at end of #endif directive
../select/select.h:30:9: warning: extra tokens at end of #endif directive
mzTech.c:24:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../utils/list.h:32:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../wiring/wiring.h:26:9: warning: extra tokens at end of #endif directive
../wiring/wiring.h:29:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../utils/list.h:32:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
mzTech.c:1468:8: warning: extra tokens at end of #endif directive
--- compiling mzrouter/mzTestCmd.o
mzTestCmd.c:23:9: warning: extra tokens at end of #endif directive
mzTech.c:1666:8: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../utils/list.h:32:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
--- compiling mzrouter/mzWalk.o
mzWalk.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/list.h:32:9: warning: extra tokens at end of #endif directive
--- linking libmzrouter.o
--- compiling netlist/netlist.o
netlist.c:23:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- linking libnetlist.o
--- compiling netmenu/NMbutton.o
--- compiling netmenu/NMcmdAK.o
NMcmdAK.c:21:9: warning: extra tokens at end of #endif directive
NMbutton.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: In file included from NMcmdAK.c:26:
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
extra tokens at end of #endif directive../tiles/tile.h:34:9: warning: extra 
tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../netmenu/nmInt.h:27:9: warning: extra tokens at end of #endif directive
../netmenu/nmInt.h:30:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../netmenu/nmInt.h:27:9: warning: extra tokens at end of #endif directive
../netmenu/nmInt.h:30:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
--- compiling netmenu/NMcmdLZ.o
NMcmdLZ.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
--- compiling netmenu/NMlabel.o
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../netmenu/nmInt.h:27:9: warning: extra tokens at end of #endif directive
../netmenu/nmInt.h:30:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
NMlabel.c:24:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../netmenu/nmInt.h:27:9: warning: extra tokens at end of #endif directive
../netmenu/nmInt.h:30:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling netmenu/NMmain.o
NMmain.c:25:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../netmenu/nmInt.h:27:9: warning: extra tokens at end of #endif directive
../netmenu/nmInt.h:30:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
--- compiling netmenu/NMnetlist.o
NMnetlist.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../netmenu/nmInt.h:27:9: warning: extra tokens at end of #endif directive
../netmenu/nmInt.h:30:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling netmenu/NMshowpt.o
NMshowpt.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling netmenu/NMshowcell.o
NMshowcell.c:23:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../netmenu/nmInt.h:27:9: warning: extra tokens at end of #endif directive
../netmenu/nmInt.h:30:9: warning: extra tokens at end of #endif directive
--- compiling netmenu/NMundo.o
NMundo.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../netmenu/nmInt.h:27:9: warning: extra tokens at end of #endif directive
../netmenu/nmInt.h:30:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
--- compiling netmenu/NMwiring.o
NMwiring.c:24:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../netmenu/nmInt.h:27:9: warning: extra tokens at end of #endif directive
../netmenu/nmInt.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- linking libnetmenu.o
--- compiling parser/parser.o
parser.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
--- linking libparser.o
--- compiling plot/plotGremln.o
--- compiling plot/plotPS.o
plotPS.c:22:9: warning: extra tokens at end of #endif directive
plotGremln.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: In file included from plotGremln.c:27:
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
In file included from plotPS.c:29../database/database.h:32:9: warning: extra 
tokens at end of #endif directive
warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
--- compiling plot/plotMain.o
plotMain.c:23:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../plot/plotInt.h:24:9: warning: extra tokens at end of #endif directive
../plot/plotInt.h:27:9: warning: extra tokens at end of #endif directive
../plot/plotInt.h:47:9: warning: extra tokens at end of #endif directive
--- compiling plot/plotRutils.o
plotRutils.c:25:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../plot/plotInt.h:24:9: warning: extra tokens at end of #endif directive
../plot/plotInt.h:27:9: warning: extra tokens at end of #endif directive
../plot/plotInt.h:47:9: warning: extra tokens at end of #endif directive
plotRutils.c:133:8: warning: extra tokens at end of #endif directive
plotRutils.c:542:9: warning: extra tokens at end of #endif directive
--- compiling plot/plotVers.o
plotVers.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../plot/plotInt.h:24:9: warning: extra tokens at end of #endif directive
../plot/plotInt.h:27:9: warning: extra tokens at end of #endif directive
../plot/plotInt.h:47:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
plotVers.c:330:9: warning: extra tokens at end of #endif directive
plotVers.c:427:9: warning: extra tokens at end of #endif directive
--- compiling plot/plotPixels.o
plotPixels.c:24:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../plot/plotInt.h:24:9: warning: extra tokens at end of #endif directive
../plot/plotInt.h:27:9: warning: extra tokens at end of #endif directive
../plot/plotInt.h:47:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
../graphics/graphicsInt.h:55:8: warning: extra tokens at end of #endif directive
plotPixels.c:205: warning: passing arg 0 of `PlotPixPoint' from incompatible 
pointer type
plotPixels.c:205: warning: passing arg 0 of `PlotPixPoint' from incompatible 
pointer type
plotPixels.c:205: warning: passing arg 0 of `PlotPixPoint' from incompatible 
pointer type
--- compiling plot/plotPNM.o
plotPNM.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
--- linking libplot.o
--- compiling plow/PlowJogs.o
--- compiling plow/PlowMain.o
PlowJogs.c:21:9: warning: extra tokens at end of #endif directive
PlowMain.c:23:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:27:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:30:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:33:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:27:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:30:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:33:9: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
PlowMain.c:483:9: warning: extra tokens at end of #endif directive
PlowMain.c:515:9: warning: extra tokens at end of #endif directive
PlowMain.c:1026:9: warning: extra tokens at end of #endif directive
PlowMain.c:1036:9: warning: extra tokens at end of #endif directive
--- compiling plow/PlowQueue.o
PlowQueue.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../plow/plowInt.h:27:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:30:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:33:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling plow/PlowRandom.o
PlowRandom.c:25:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../plow/plowInt.h:27:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:30:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:33:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
PlowRandom.c:83:9: warning: extra tokens at end of #endif directive
PlowRandom.c:101:9: warning: extra tokens at end of #endif directive
PlowRandom.c:145:9: warning: extra tokens at end of #endif directive
PlowRandom.c:157:9: warning: extra tokens at end of #endif directive
PlowRandom.c:255:9: warning: extra tokens at end of #endif directive
--- compiling plow/PlowRules1.o
PlowRules1.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:27:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:30:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:33:9: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
--- compiling plow/PlowRules2.o
--- compiling plow/PlowRules3.o
PlowRules2.c:22:9: warning: extra tokens at end of #endif directive
PlowRules3.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:27:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:30:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:33:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:27:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:30:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:33:9: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
warning: ../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
PlowRules3.c:120:9: warning: extra tokens at end of #endif directive
PlowRules3.c:177:9: warning: extra tokens at end of #endif directive
PlowRules3.c:252:9: warning: extra tokens at end of #endif directive
PlowRules3.c:346:9: warning: extra tokens at end of #endif directive
--- compiling plow/PlowSearch.o
PlowSearch.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../plow/plowInt.h:27:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:30:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:33:9: warning: extra tokens at end of #endif directive
../utils/stack.h:27:9: warning: extra tokens at end of #endif directive
--- compiling plow/PlowTech.o
PlowTech.c:23:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:27:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:30:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:33:9: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
--- compiling plow/PlowTest.o
PlowTest.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:27:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:30:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:33:9: warning: extra tokens at end of #endif directive
--- compiling plow/PlowWidth.o
PlowTest.c:760:9: warning: extra tokens at end of #endif directive
PlowWidth.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../plow/plowInt.h:27:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:30:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:33:9: warning: extra tokens at end of #endif directive
PlowWidth.c:44:9: warning: extra tokens at end of #endif directive
PlowWidth.c:85:9: warning: extra tokens at end of #endif directive
PlowWidth.c:103:9: warning: extra tokens at end of #endif directive
PlowWidth.c:111:9: warning: extra tokens at end of #endif directive
PlowWidth.c:128:9: warning: extra tokens at end of #endif directive
PlowWidth.c:138:9: warning: extra tokens at end of #endif directive
PlowWidth.c:181:9: warning: extra tokens at end of #endif directive
PlowWidth.c:250:9: warning: extra tokens at end of #endif directive
PlowWidth.c:355:9: warning: extra tokens at end of #endif directive
PlowWidth.c:363:9: warning: extra tokens at end of #endif directive
PlowWidth.c:380:9: warning: extra tokens at end of #endif directive
PlowWidth.c:390:9: warning: extra tokens at end of #endif directive
PlowWidth.c:433:9: warning: extra tokens at end of #endif directive
--- compiling plow/PlowYank.o
PlowYank.c:23:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:27:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:30:9: warning: extra tokens at end of #endif directive
../plow/plowInt.h:33:9: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
--- linking libplow.o
--- compiling resis/ResMain.o
--- compiling resis/ResJunct.o
ResMain.c:3:9: warning: extra tokens at end of #endif directive
ResJunct.c:4:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif 
directiveIn file included from ResJunct.c:24:
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
../utils/stack.h:27:9: warning: extra tokens at end of #endif directive
--- compiling resis/ResMakeRes.o
ResMakeRes.c:4:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
--- compiling resis/ResSimple.o
ResSimple.c:13:9: warning: extra tokens at end of #endif directive
--- compiling resis/ResPrint.o
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
ResPrint.c:4:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
../utils/stack.h:27:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
../utils/stack.h:27:9: warning: extra tokens at end of #endif directive
--- compiling resis/ResReadSim.o
ResReadSim.c:4:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
--- compiling resis/ResConDCS.o
ResConDCS.c:8:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
--- compiling resis/ResRex.o
ResRex.c:4:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
--- compiling resis/ResBasic.o
ResBasic.c:4:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
--- compiling resis/ResMerge.o
ResMerge.c:4:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling resis/ResChecks.o
ResChecks.c:4:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
../utils/stack.h:27:9: warning: extra tokens at end of #endif directive
--- compiling resis/ResFract.o
ResFract.c:12:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
--- compiling resis/ResUtils.o
ResUtils.c:4:9: warning: extra tokens at end of #endif directive
--- compiling resis/ResDebug.o
ResDebug.c:4:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
../utils/stack.h:27:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
../utils/stack.h:27:9: warning: extra tokens at end of #endif directive
--- linking libresis.o
--- compiling router/rtrMain.o
--- compiling router/rtrDcmpose.o
rtrMain.c:20:9: warning: extra tokens at end of #endif directive
rtrDcmpose.c:34:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling router/ftrFdback.o
ftrFdback.c:24:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling router/rtrHazards.o
rtrHazards.c:35:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling router/rtrChannel.o
rtrChannel.c:20:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
rtrChannel.c:60:9: warning: extra tokens at end of #endif directive
rtrChannel.c:541:9: warning: extra tokens at end of #endif directive
--- compiling router/rtrPaint.o
rtrPaint.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
--- compiling router/rtrPin.o
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9:rtrPin.c:22:9: warning: extra tokens at end of #endif 
directive
 warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
rtrPin.c:430:9: warning: extra tokens at end of #endif directive
--- compiling router/rtrSide.o
rtrSide.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
--- compiling router/rtrStem.o
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
rtrStem.c:24:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling router/rtrTech.o
rtrTech.c:23:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
rtrTech.c:382:9: warning: extra tokens at end of #endif directive
--- compiling router/rtrVia.o
rtrVia.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../utils/doubleint.h:26:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
--- compiling router/rtrTravers.o
rtrTravers.c:24:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../gcr/gcr.h:191:9: warning: extra tokens at end of #endif directive
--- linking librouter.o
--- compiling select/selCreate.o
--- compiling select/selDisplay.o
selCreate.c:21:9: warning: extra tokens at end of #endif directive
selDisplay.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
warning: ../database/database.h:32:9: warning: extra tokens at end of #endif 
directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
../select/selInt.h:27:9: warning: extra tokens at end of #endif directive
../select/selInt.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
--- compiling select/selEnum.o
selEnum.c:24:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../select/select.h:27:9: warning: extra tokens at end of #endif directive
../select/select.h:30:9: warning: extra tokens at end of #endif directive
../select/selInt.h:27:9: warning: extra tokens at end of #endif directive
../select/selInt.h:30:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling select/selOps.o
selOps.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../select/select.h:27:9: warning: extra tokens at end of #endif directive
../select/select.h:30:9: warning: extra tokens at end of #endif directive
../select/selInt.h:27:9: warning: extra tokens at end of #endif directive
../select/selInt.h:30:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
--- compiling select/selUndo.o
selUndo.c:24:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../select/select.h:27:9: warning: extra tokens at end of #endif directive
../select/select.h:30:9: warning: extra tokens at end of #endif directive
../select/selInt.h:27:9: warning: extra tokens at end of #endif directive
../select/selInt.h:30:9: warning: extra tokens at end of #endif directive
--- compiling select/selUnselect.o
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../select/select.h:27:9: warning: extra tokens at end of #endif directive
../select/select.h:30:9: warning: extra tokens at end of #endif directive
../select/selInt.h:27:9: warning: extra tokens at end of #endif directive
../select/selInt.h:30:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- linking libselect.o
--- compiling signals/signals.o
signals.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
signals.c:240:8: warning: extra tokens at end of #endif directive
signals.c:525:8: warning: extra tokens at end of #endif directive
--- linking libsignals.o
--- compiling sim/SimDBstuff.o
--- compiling sim/SimSelect.o
SimSelect.c:23:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
../select/selInt.h:27:9: warning: extra tokens at end of #endif directive
../select/selInt.h:30:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
--- compiling sim/SimRsim.o
--- compiling sim/SimExtract.o
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/stack.h:27:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:30:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:33:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:36:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:39:9: warning: extra tokens at end of #endif directive
../extract/extractInt.h:42:9: warning: extra tokens at end of #endif directive
../utils/stack.h:27:9: warning: extra tokens at end of #endif directive
--- linking libsim.o
--- compiling textio/txCommands.o
--- compiling textio/txInput.o
txCommands.c:22:9: warning: extra tokens at end of #endif directive
txInput.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../textio/textioInt.h:56:8: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../utils/dqueue.h:29:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../textio/textioInt.h:56:8: warning: extra tokens at end of #endif directive
../utils/dqueue.h:29:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/databaseInt.h:25:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:28:9: warning: extra tokens at end of #endif directive
../database/databaseInt.h:31:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:26:9: warning: extra tokens at end of #endif directive
../cif/CIFint.h:29:9: warning: extra tokens at end of #endif directive
../cif/CIFread.h:26:9: warning: extra tokens at end of #endif directive
../cif/CIFread.h:29:9: warning: extra tokens at end of #endif directive
txInput.c:582: warning: pointer/integer type mismatch in conditional expression
txInput.c:1045:8: warning: extra tokens at end of #endif directive
txInput.c:1068:8: warning: extra tokens at end of #endif directive
txInput.c:1076:8: warning: extra tokens at end of #endif directive
txInput.c:1102:8: warning: extra tokens at end of #endif directive
txInput.c:1117:8: warning: extra tokens at end of #endif directive
txInput.c:1126:8: warning: extra tokens at end of #endif directive
txInput.c:1169:8: warning: extra tokens at end of #endif directive
txInput.c:1194:8: warning: extra tokens at end of #endif directive
make[2]: *** [txInput.o] Error 1
--- compiling tech/tech.o
tech.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
tech.c:35:9: warning: extra tokens at end of #endif directive
tech.c:430:9: warning: extra tokens at end of #else directive
tech.c:443:9: warning: extra tokens at end of #endif directive
--- linking libtech.o
--- compiling tiles/tile.o
--- compiling tiles/search.o
tile.c:21:9: warning: extra tokens at end of #endif directive
search.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: In file included from search.c:24:
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
--- compiling tiles/search2.o
search2.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
--- linking libtiles.o
--- compiling undo/undo.o
undo.c:27:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
--- linking libundo.o
--- linking libutils.o
--- compiling windows/windClient.o
--- compiling windows/windCmdAM.o
windClient.c:21:9: warning: extra tokens at end of #endif directive
windCmdAM.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
windClient.c:609:9: warning: extra tokens at end of #endif directive
--- compiling windows/windCmdNR.o
windCmdNR.c:21:9: warning: extra tokens at end of #endif directive
--- compiling windows/windCmdSZ.o
windCmdSZ.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
--- compiling windows/windSend.o
windSend.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/stack.h:27:9: warning: extra tokens at end of #endif directive
--- compiling windows/windDebug.o
windDebug.c:21:9: warning: extra tokens at end of #endif directive
--- compiling windows/windDisp.o
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
windDisp.c:20:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling windows/windSun.o
windSun.c:21:9: warning: extra tokens at end of #endif directive
windSun.c:386:9: warning: extra tokens at end of #endif directive
--- compiling windows/windMain.o
windMain.c:48:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/stack.h:27:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- compiling windows/windMove.o
windMove.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
windMove.c:201:9: warning: extra tokens at end of #endif directive
windMove.c:331:9: warning: extra tokens at end of #endif directive
windMove.c:452:9: warning: extra tokens at end of #endif directive
windMove.c:515:9: warning: extra tokens at end of #endif directive
--- compiling windows/windSearch.o
windSearch.c:21:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
--- compiling windows/windTrans.o
windTrans.c:22:9: warning: extra tokens at end of #endif directive
--- compiling windows/windView.o
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
windView.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
--- linking libwindows.o
--- compiling wiring/wireOps.o
--- compiling wiring/wireTech.o
wireTech.c:22:9: warning: extra tokens at end of #endif directive
wireOps.c:23:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../select/select.h:27:9: warning: extra tokens at end of #endif directive
../select/select.h:30:9: warning: extra tokens at end of #endif directive
../wiring/wiring.h:26:9: warning: extra tokens at end of #endif directive
../wiring/wiring.h:29:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
../main/main.h:27:9: warning: extra tokens at end of #endif directive
../main/main.h:30:9: warning: extra tokens at end of #endif directive
../wiring/wiring.h:26:9: warning: extra tokens at end of #endif directive
../wiring/wiring.h:29:9: warning: extra tokens at end of #endif directive
../wiring/wireInt.h:26:9: warning: extra tokens at end of #endif directive
../wiring/wireInt.h:29:9: warning: extra tokens at end of #endif directive
--- compiling wiring/wireUndo.o
wireUndo.c:22:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../wiring/wiring.h:26:9: warning: extra tokens at end of #endif directive
../wiring/wiring.h:29:9: warning: extra tokens at end of #endif directive
../wiring/wireInt.h:26:9: warning: extra tokens at end of #endif directive
../wiring/wireInt.h:29:9: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
--- linking libwiring.o
--- compiling ext2sim/ext2sim.o
ext2sim.c:17:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../extflat/extflat.h:24:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
ext2sim.c:203:9: warning: extra tokens at end of #endif directive
--- linking libext2sim.o
--- compiling ext2spice/ext2spice.o
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../utils/dqueue.h:29:9: warning: extra tokens at end of #endif directive
../extflat/extflat.h:24:9: warning: extra tokens at end of #endif directive
../extflat/EFint.h:24:9: warning: extra tokens at end of #endif directive
ext2spice.c:319:9: warning: extra tokens at end of #endif directive
--- linking libext2spice.o
--- compiling magic/magicTop.o
magicTop.c:25:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
--- linking libmagic.o
--- compiling magicusage/magicusage.o
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/stack.h:27:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
magicusage.c:43:9: warning: extra tokens at end of #endif directive
--- linking libmagicusage.o
--- compiling net2ir/net2ir.o
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
net2ir.c:31:8: warning: extra tokens at end of #endif directive
--- linking libnet2ir.o
--- compiling extcheck/extcheck.o
extcheck.c:27:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../extflat/extflat.h:24:9: warning: extra tokens at end of #endif directive
extcheck.c:93:9: warning: extra tokens at end of #endif directive
--- linking libextcheck.o
--- compiling mpack/mpackMain.o
--- compiling mpack/magicMain.o
magicMain.c:22:9: warning: extra tokens at end of #endif directive
mpackMain.c:18:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../cif/cif.h:27:9: warning: extra tokens at end of #endif directive
../cif/cif.h:30:9: warning: extra tokens at end of #endif directive
../utils/malloc.h:201:9: warning: extra tokens at end of #endif directive
../graphics/graphics.h:105:9: warning: extra tokens at end of #else directive
../graphics/graphics.h:108:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../drc/drc.h:27:9: warning: extra tokens at end of #endif directive
../drc/drc.h:30:9: warning: extra tokens at end of #endif directive
../drc/drc.h:180:9: warning: extra tokens at end of #endif directive
../commands/commands.h:27:9: warning: extra tokens at end of #endif directive
../commands/commands.h:31:9: warning: extra tokens at end of #endif directive
../cif/cif.h:27:9: warning: extra tokens at end of #endif directive
../cif/cif.h:30:9: warning: extra tokens at end of #endif directive
--- compiling mpack/magicStubs.o
magicStubs.c:14:9: warning: extra tokens at end of #endif directive
../misc/magic.h:102:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:31:9: warning: extra tokens at end of #endif directive
../tiles/tile.h:34:9: warning: extra tokens at end of #endif directive
../database/database.h:29:9: warning: extra tokens at end of #endif directive
../database/database.h:32:9: warning: extra tokens at end of #endif directive
../database/database.h:35:9: warning: extra tokens at end of #endif directive
../database/database.h:490:8: warning: extra tokens at end of #endif directive
../undo/undo.h:28:9: warning: extra tokens at end of #endif directive
--- linking libmpack.o
--- making main programs
--- building main ext2sim
--- building main ext2spice
--- building main magicusage
--- building main net2ir
--- building main extcheck
--- archiving libmpack.a
--- building main X11Helper
X11Helper.c:62:8: warning: extra tokens at end of #endif directive

>>> Install magic-7.1 into /var/tmp/portage/magic-7.1/image/ category app-sci
--- installing to /var/tmp/portage/magic-7.1/image//usr/lib
make[2]: *** No rule to make target `../textio/libtextio.o', needed by 
`magic'.  Stop.
gzipping man page: /var/tmp/portage/magic-
7.1/image//usr/share/man/man1/ext2sim.1
gzipping man page: /var/tmp/portage/magic-
7.1/image//usr/share/man/man1/ext2spice.1
gzipping man page: /var/tmp/portage/magic-
7.1/image//usr/share/man/man1/extcheck.1
gzipping man page: /var/tmp/portage/magic-7.1/image//usr/share/man/man1/magic.1
gzipping man page: /var/tmp/portage/magic-
7.1/image//usr/share/man/man1/magicusage.1
gzipping man page: /var/tmp/portage/magic-7.1/image//usr/share/man/man3/dqueue.3
gzipping man page: /var/tmp/portage/magic-
7.1/image//usr/share/man/man3/extflat.3
gzipping man page: /var/tmp/portage/magic-
7.1/image//usr/share/man/man3/geometry.3
gzipping man page: /var/tmp/portage/magic-7.1/image//usr/share/man/man3/hash.3
gzipping man page: /var/tmp/portage/magic-7.1/image//usr/share/man/man3/heap.3
gzipping man page: /var/tmp/portage/magic-
7.1/image//usr/share/man/man3/libmalloc.3
gzipping man page: /var/tmp/portage/magic-7.1/image//usr/share/man/man3/list.3
gzipping man page: /var/tmp/portage/magic-
7.1/image//usr/share/man/man3/magicutils.3
gzipping man page: /var/tmp/portage/magic-7.1/image//usr/share/man/man3/malloc.3
gzipping man page: /var/tmp/portage/magic-7.1/image//usr/share/man/man3/path.3
gzipping man page: /var/tmp/portage/magic-
7.1/image//usr/share/man/man3/runstats.3
gzipping man page: /var/tmp/portage/magic-7.1/image//usr/share/man/man3/set.3
gzipping man page: /var/tmp/portage/magic-7.1/image//usr/share/man/man3/show.3
gzipping man page: /var/tmp/portage/magic-7.1/image//usr/share/man/man3/stack.3
gzipping man page: /var/tmp/portage/magic-7.1/image//usr/share/man/man3/string.3
gzipping man page: /var/tmp/portage/magic-7.1/image//usr/share/man/man5/cmap.5
gzipping man page: /var/tmp/portage/magic-
7.1/image//usr/share/man/man5/displays.5
gzipping man page: /var/tmp/portage/magic-7.1/image//usr/share/man/man5/dlys.5
gzipping man page: /var/tmp/portage/magic-7.1/image//usr/share/man/man5/dstyle.5
gzipping man page: /var/tmp/portage/magic-7.1/image//usr/share/man/man5/ext.5
gzipping man page: /var/tmp/portage/magic-7.1/image//usr/share/man/man5/glyphs.5
gzipping man page: /var/tmp/portage/magic-7.1/image//usr/share/man/man5/magic.5
gzipping man page: /var/tmp/portage/magic-7.1/image//usr/share/man/man5/net.5
gzipping man page: /var/tmp/portage/magic-7.1/image//usr/share/man/man5/sim.5
gzipping man page: /var/tmp/portage/magic-7.1/image//usr/share/man/man8/prleak.8
strip:
/var/tmp/portage/magic-7.1/image/usr/bin/ext2sim
/var/tmp/portage/magic-7.1/image/usr/bin/ext2spice
/var/tmp/portage/magic-7.1/image/usr/bin/magicusage
/var/tmp/portage/magic-7.1/image/usr/bin/net2ir
/var/tmp/portage/magic-7.1/image/usr/bin/extcheck
/var/tmp/portage/magic-7.1/image/usr/bin/X11Helper
>>> Completed installing into /var/tmp/portage/magic-7.1/image/

   ...done!
>>> emerge app-shells/tcsh-6.11 to /
>>> Downloading 
http://www.ibiblio.org/pub/Linux/distributions/gentoo/distfiles/tcsh-6.11.tar.gz
>>> md5 ;-) tcsh-6.11.tar.gz
>>> Merging app-shells/tcsh-6.11 to /
--- /bin/
>>> /bin/tcsh
>>> /bin/csh -> /bin/tcsh
--- /usr/
--- /usr/share/
--- /usr/share/man/
--- /usr/share/man/man1/
>>> /usr/share/man/man1/tcsh.1.gz
--- /usr/share/doc/
>>> /usr/share/doc/tcsh-6.11/
>>> /usr/share/doc/tcsh-6.11/html/
>>> /usr/share/doc/tcsh-6.11/html/AUTHORS.html
>>> /usr/share/doc/tcsh-6.11/html/Alias_substitution.html
>>> /usr/share/doc/tcsh-6.11/html/Argument_list_processing.html
>>> /usr/share/doc/tcsh-6.11/html/Automatic,_periodic_and_timed_events.html
>>> /usr/share/doc/tcsh-6.11/html/BUGS.html
>>> /usr/share/doc/tcsh-6.11/html/Builtin_and_non-builtin_command_execution.html
>>> /usr/share/doc/tcsh-6.11/html/Builtin_commands.html
>>> /usr/share/doc/tcsh-
6.11/html/Command,_filename_and_directory_stack_substitution.html
>>> /usr/share/doc/tcsh-6.11/html/Command_exit_status.html
>>> /usr/share/doc/tcsh-6.11/html/Command_substitution.html
>>> /usr/share/doc/tcsh-6.11/html/Commands.html
>>> /usr/share/doc/tcsh-6.11/html/Completion_and_listing.html
>>> /usr/share/doc/tcsh-6.11/html/Control_flow.html
>>> /usr/share/doc/tcsh-6.11/html/DESCRIPTION.html
>>> /usr/share/doc/tcsh-6.11/html/Directory_stack_substitution.html
>>> /usr/share/doc/tcsh-6.11/html/ENVIRONMENT.html
>>> /usr/share/doc/tcsh-6.11/html/Editing.html
>>> /usr/share/doc/tcsh-6.11/html/Editor_commands.html
>>> /usr/share/doc/tcsh-6.11/html/Expressions.html
>>> /usr/share/doc/tcsh-6.11/html/FILES.html
>>> /usr/share/doc/tcsh-6.11/html/Features.html
>>> /usr/share/doc/tcsh-6.11/html/File_inquiry_operators.html
>>> /usr/share/doc/tcsh-6.11/html/Filename_substitution.html
>>> /usr/share/doc/tcsh-6.11/html/History_substitution.html
>>> /usr/share/doc/tcsh-6.11/html/Input_output.html
>>> /usr/share/doc/tcsh-6.11/html/Jobs.html
>>> /usr/share/doc/tcsh-6.11/html/LIMITATIONS.html
>>> /usr/share/doc/tcsh-6.11/html/Lexical_structure.html
>>> /usr/share/doc/tcsh-
6.11/html/Logical,_arithmetical_and_comparison_operators.html
>>> /usr/share/doc/tcsh-6.11/html/NEW_FEATURES.html
>>> /usr/share/doc/tcsh-6.11/html/Native_Language_System_support.html
>>> /usr/share/doc/tcsh-6.11/html/OS_variant_support.html
>>> /usr/share/doc/tcsh-6.11/html/Other_substitutions.html
>>> /usr/share/doc/tcsh-6.11/html/REFERENCE.html
>>> /usr/share/doc/tcsh-6.11/html/SEE_ALSO.html
>>> /usr/share/doc/tcsh-6.11/html/Signal_handling.html
>>> /usr/share/doc/tcsh-6.11/html/Simple_commands,_pipelines_and_sequences.html
>>> /usr/share/doc/tcsh-6.11/html/Special_aliases.html
>>> /usr/share/doc/tcsh-6.11/html/Special_shell_variables.html
>>> /usr/share/doc/tcsh-6.11/html/Spelling_correction.html
>>> /usr/share/doc/tcsh-6.11/html/Startup_and_shutdown.html
>>> /usr/share/doc/tcsh-6.11/html/Status_reporting.html
>>> /usr/share/doc/tcsh-6.11/html/Substitutions.html
>>> /usr/share/doc/tcsh-6.11/html/THANKS_TO.html
>>> /usr/share/doc/tcsh-6.11/html/THE_T_IN_TCSH.html
>>> /usr/share/doc/tcsh-6.11/html/Terminal_management.html
>>> /usr/share/doc/tcsh-6.11/html/The_command-line_editor.html
>>> /usr/share/doc/tcsh-6.11/html/VERSION.html
>>> /usr/share/doc/tcsh-6.11/html/Variable_substitution.html
>>> /usr/share/doc/tcsh-6.11/html/header.html
>>> /usr/share/doc/tcsh-6.11/html/index.html
>>> /usr/share/doc/tcsh-6.11/html/lists.html
>>> /usr/share/doc/tcsh-6.11/html/top.html
>>> /usr/share/doc/tcsh-6.11/FAQ.gz
>>> /usr/share/doc/tcsh-6.11/Y2K.gz
>>> /usr/share/doc/tcsh-6.11/Fixes.gz
>>> /usr/share/doc/tcsh-6.11/Ported.gz
>>> /usr/share/doc/tcsh-6.11/NewThings.gz
>>> /usr/share/doc/tcsh-6.11/README.gz
>>> /usr/share/doc/tcsh-6.11/WishList.gz
--- /etc/
>>> /etc/csh.cshrc
>>> /etc/csh.login

>>> Regenerating /etc/ld.so.cache...
>>> app-shells/tcsh-6.11 merged.
>>> emerge app-sci/magic-7.1 to /
>>> Downloading 
http://www.ibiblio.org/pub/Linux/distributions/gentoo/distfiles/magic-
current.tar.gz
>>> md5 ;-) magic-current.tar.gz
>>> Merging app-sci/magic-7.1 to /
--- /usr/
--- /usr/bin/
>>> /usr/bin/ext2sim
>>> /usr/bin/ext2spice
>>> /usr/bin/spice2sim
>>> /usr/bin/magicusage
>>> /usr/bin/net2ir
>>> /usr/bin/extcheck
>>> /usr/bin/X11Helper
--- /usr/share/
--- /usr/share/man/
--- /usr/share/man/man1/
>>> /usr/share/man/man1/magic.1.gz
>>> /usr/share/man/man1/magicusage.1.gz
>>> /usr/share/man/man1/ext2sim.1.gz
>>> /usr/share/man/man1/ext2spice.1.gz
>>> /usr/share/man/man1/extcheck.1.gz
--- /usr/share/man/man3/
>>> /usr/share/man/man3/geometry.3.gz
>>> /usr/share/man/man3/hash.3.gz
>>> /usr/share/man/man3/heap.3.gz
>>> /usr/share/man/man3/libmalloc.3.gz
>>> /usr/share/man/man3/list.3.gz
>>> /usr/share/man/man3/malloc.3.gz
>>> /usr/share/man/man3/path.3.gz
>>> /usr/share/man/man3/runstats.3.gz
>>> /usr/share/man/man3/set.3.gz
>>> /usr/share/man/man3/show.3.gz
>>> /usr/share/man/man3/stack.3.gz
>>> /usr/share/man/man3/dqueue.3.gz
>>> /usr/share/man/man3/extflat.3.gz
>>> /usr/share/man/man3/magicutils.3.gz
>>> /usr/share/man/man3/string.3.gz
--- /usr/share/man/man5/
>>> /usr/share/man/man5/dlys.5.gz
>>> /usr/share/man/man5/dstyle.5.gz
>>> /usr/share/man/man5/ext.5.gz
>>> /usr/share/man/man5/magic.5.gz
>>> /usr/share/man/man5/net.5.gz
>>> /usr/share/man/man5/sim.5.gz
>>> /usr/share/man/man5/cmap.5.gz
>>> /usr/share/man/man5/displays.5.gz
>>> /usr/share/man/man5/glyphs.5.gz
--- /usr/share/man/man8/
>>> /usr/share/man/man8/prleak.8.gz
--- /usr/lib/
>>> /usr/lib/magic/
>>> /usr/lib/magic/sys/
>>> /usr/lib/magic/sys/windows7.glyphs
>>> /usr/lib/magic/sys/windows11.glyphs
>>> /usr/lib/magic/sys/windows14.glyphs
>>> /usr/lib/magic/sys/windows22.glyphs
>>> /usr/lib/magic/sys/bw.glyphs
>>> /usr/lib/magic/sys/color.glyphs
>>> /usr/lib/magic/sys/scmos.tech
>>> /usr/lib/magic/sys/scmos.tech26
>>> /usr/lib/magic/sys/mos.7bit.dstyle5
>>> /usr/lib/magic/sys/mos.7bit.std.cmap1
>>> /usr/lib/magic/sys/scmos-tm.tech26
>>> /usr/lib/magic/sys/scmos-sub.tech26
>>> /usr/lib/magic/sys/scmos.tech27
>>> /usr/lib/magic/sys/scmos-tm.tech27
>>> /usr/lib/magic/sys/scmos-sub.tech27
>>> /usr/lib/magic/sys/scmosWR.tech26
>>> /usr/lib/magic/sys/scmosWR.tech27
>>> /usr/lib/magic/sys/mos.24bit.dstyle5
>>> /usr/lib/magic/sys/mos.7bit.mraster_dstyle5
>>> /usr/lib/magic/sys/mos.7bit.mraster.cmap1
>>> /usr/lib/magic/sys/mos.OpenGL.dstyle5
>>> /usr/lib/magic/sys/mos.OpenGL.std.cmap1
>>> /usr/lib/magic/scm/
>>> /usr/lib/magic/scm/default.scm
>>> /usr/lib/magic/scm/box.scm
>>> /usr/lib/magic/scm/label.scm
>>> /usr/lib/magic/scm/draw.scm
>>> /usr/lib/magic/scm/drc.scm
>>> /usr/lib/magic/scm/stack.scm
>>> /usr/lib/magic/scm/layout.scm
>>> /usr/lib/magic/scm/prs.scm
>>> /usr/lib/magic/scm/help.scm
>>> /usr/lib/magic/scm/gate.scm
>>> /usr/lib/magic/scm/sel.scm
>>> /usr/lib/magic/tutorial/
>>> /usr/lib/magic/tutorial/m3a.mag
>>> /usr/lib/magic/tutorial/maint2a.mag
>>> /usr/lib/magic/tutorial/tut1.mag
>>> /usr/lib/magic/tutorial/tut2a.mag
>>> /usr/lib/magic/tutorial/tut2b.mag
>>> /usr/lib/magic/tutorial/tut2c.mag
>>> /usr/lib/magic/tutorial/tut2d.mag
>>> /usr/lib/magic/tutorial/tut3a.mag
>>> /usr/lib/magic/tutorial/tut3b.mag
>>> /usr/lib/magic/tutorial/tut3c.mag
>>> /usr/lib/magic/tutorial/tut3d.mag
>>> /usr/lib/magic/tutorial/tut3e.mag
>>> /usr/lib/magic/tutorial/tut3f.mag
>>> /usr/lib/magic/tutorial/tut3g.mag
>>> /usr/lib/magic/tutorial/tut3h.mag
>>> /usr/lib/magic/tutorial/tut4a.mag
>>> /usr/lib/magic/tutorial/tut4x.mag
>>> /usr/lib/magic/tutorial/tut4y.mag
>>> /usr/lib/magic/tutorial/tut4z.mag
>>> /usr/lib/magic/tutorial/tut5a.mag
>>> /usr/lib/magic/tutorial/tut5b.mag
>>> /usr/lib/magic/tutorial/tut6a.mag
>>> /usr/lib/magic/tutorial/tut6b.mag
>>> /usr/lib/magic/tutorial/tut6c.mag
>>> /usr/lib/magic/tutorial/tut6x.mag
>>> /usr/lib/magic/tutorial/tut6y.mag
>>> /usr/lib/magic/tutorial/tut7a.mag
>>> /usr/lib/magic/tutorial/tut7b.mag
>>> /usr/lib/magic/tutorial/tut7b.net
>>> /usr/lib/magic/tutorial/tut7c.mag
>>> /usr/lib/magic/tutorial/tut7d.mag
>>> /usr/lib/magic/tutorial/tut7d.net
>>> /usr/lib/magic/tutorial/tut8a.mag
>>> /usr/lib/magic/tutorial/tut8b.mag
>>> /usr/lib/magic/tutorial/tut8c.mag
>>> /usr/lib/magic/tutorial/tut8d.mag
>>> /usr/lib/magic/tutorial/tut8e.mag
>>> /usr/lib/magic/tutorial/tut8f.mag
>>> /usr/lib/magic/tutorial/tut8g.mag
>>> /usr/lib/magic/tutorial/tut8h.mag
>>> /usr/lib/magic/tutorial/tut8i.mag
>>> /usr/lib/magic/tutorial/tut8j.mag
>>> /usr/lib/magic/tutorial/tut8k.mag
>>> /usr/lib/magic/tutorial/tut8l.mag
>>> /usr/lib/magic/tutorial/tut8m.mag
>>> /usr/lib/magic/tutorial/tut8n.mag
>>> /usr/lib/magic/tutorial/tut8r.mag
>>> /usr/lib/magic/tutorial/tut9a.mag
>>> /usr/lib/magic/tutorial/tut9b.mag
>>> /usr/lib/magic/tutorial/tut9x.mag
>>> /usr/lib/magic/tutorial/tut9y.mag
>>> /usr/lib/magic/tutorial/tut11a.mag
>>> /usr/lib/magic/tutorial/tut11b.mag
>>> /usr/lib/magic/tutorial/tut11c.mag
>>> /usr/lib/magic/tutorial/tut11d.mag
>>> /usr/lib/magic/tutorial/tut11a.al
>>> /usr/lib/magic/tutorial/tut11a.cmd
>>> /usr/lib/magic/tutorial/tut11a.ext
>>> /usr/lib/magic/tutorial/tut11a.nodes
>>> /usr/lib/magic/tutorial/tut11a.rsm
>>> /usr/lib/magic/tutorial/tut11a.sim
>>> /usr/lib/magic/tutorial/tut11b.ext
>>> /usr/lib/magic/tutorial/tut11c.ext
>>> /usr/lib/magic/tutorial/tut11d.ext
>>> /usr/lib/libmpack.a
>>> /usr/lib/mpack.h
--- /etc/
--- /etc/env.d/
>>> /etc/env.d/10magic

>>> Regenerating /etc/ld.so.cache...
>>> app-sci/magic-7.1 merged.

 * GNU info directory index is up-to-date.
Comment 1 Michael Nygard 2002-10-02 21:57:03 UTC
Created attachment 4359 [details, diff]
Update ebuild that corrects several problems

This new ebuild corrects the GCC 3.2 compile problems.	It was actually due to
a readline version conflict.
Comment 2 Daniel Ahlberg (RETIRED) gentoo-dev 2002-10-14 06:26:42 UTC
Could you try the -r1 version and report back here if it works for you? 
Comment 3 Michael Nygard 2002-12-06 22:42:27 UTC
Who are you asking to try -r1?  It works for me ... I submitted the patch.
Comment 4 Daniel Ahlberg (RETIRED) gentoo-dev 2002-12-15 11:51:47 UTC
Marked -r1 as stable. Closing.