From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: From: Charles Forsyth Date: Sun, 27 Feb 2011 15:25:25 +0000 To: fernanbolando@mailc.net, 9fans@9fans.net In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Subject: Re: [9fans] How serious is incomatible type signatures? Topicbox-Message-UUID: b53d1d2a-ead6-11e9-9d60-3106f5b1d025 >Removing -T from the compiler option seems to allow me to compile with >no problems. The resulting compiled code seems to run just fine. in many cases, that will be true, for instance because void* and int* are the same size and interchangeable, and both point to something. (even then, int* and char* aren't compatible, since they point to things of different size.) better to fix the types, so that they both match what was intended. it sounds as though the type of a signal handler is inconsistent.