Path: utzoo!censor!geac!torsqnt!news-server.csri.toronto.edu!cs.utexas.edu!usc!apple!well!nagle From: nagle@well.sf.ca.us (John Nagle) Newsgroups: comp.lang.c++ Subject: An amusing Zortech C++ bug Keywords: C++ bug Zortech signal Message-ID: <18207@well.sf.ca.us> Date: 29 May 90 17:40:48 GMT Distribution: comp Lines: 10 Try compiling #include signal(SIGFPE,SIG_IGN); with Zortech C++. You get a type error, because SIG_IGN is a null of "C++" function type, and "signal" wants a "C" function value there. The Zortech-specific syntax for declaring C and C++ functions doesn't, apparently, apply to casts.