<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Inconsistent Parameter List : C Program in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/inconsistent-parameter-list-c-program/m-p/2742608#M944101</link>
    <description>Hello,&lt;BR /&gt;&lt;BR /&gt;This is like :&lt;BR /&gt;&lt;BR /&gt;void itoa ( long, char* );&lt;BR /&gt;&lt;BR /&gt;Error No. is 1711&lt;BR /&gt;&lt;BR /&gt;Any idea is appreciated.&lt;BR /&gt;&lt;BR /&gt;Soumen Ghosh</description>
    <pubDate>Wed, 12 Jun 2002 07:58:59 GMT</pubDate>
    <dc:creator>Soumen Ghosh_1</dc:creator>
    <dc:date>2002-06-12T07:58:59Z</dc:date>
    <item>
      <title>Inconsistent Parameter List : C Program</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/inconsistent-parameter-list-c-program/m-p/2742605#M944098</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;What does the error : 'Inconsistent Parameter List' mean?&lt;BR /&gt;We are compiling C programs on HP-UX 11.0 using HP-UX provided C compiler.&lt;BR /&gt;&lt;BR /&gt;Please help.&lt;BR /&gt;Thanks in advance.&lt;BR /&gt;&lt;BR /&gt;Soumen Ghosh</description>
      <pubDate>Wed, 12 Jun 2002 07:23:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/inconsistent-parameter-list-c-program/m-p/2742605#M944098</guid>
      <dc:creator>Soumen Ghosh_1</dc:creator>
      <dc:date>2002-06-12T07:23:50Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent Parameter List : C Program</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/inconsistent-parameter-list-c-program/m-p/2742606#M944099</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;What error number are you getting with this message?  Are you able to post a code snippet of the relevant function?</description>
      <pubDate>Wed, 12 Jun 2002 07:34:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/inconsistent-parameter-list-c-program/m-p/2742606#M944099</guid>
      <dc:creator>Jim Marsden</dc:creator>
      <dc:date>2002-06-12T07:34:02Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent Parameter List : C Program</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/inconsistent-parameter-list-c-program/m-p/2742607#M944100</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;HP's compiler doesn't like the `unsigned char' parameters.&lt;BR /&gt;&lt;BR /&gt;This is a pedanticism of the HP compiler; it considers&lt;BR /&gt;the prototype to have ANSI argument conventions (char and unsigned char&lt;BR /&gt;really are only 8 bits) but it considers the definition to have K&amp;amp;R argument&lt;BR /&gt;conventions (char and unsigned char are implicitly promoted to int).&lt;BR /&gt;&lt;BR /&gt;Most compilers recognize this case and accept it as a K&amp;amp;R-&amp;gt;ANSI transition&lt;BR /&gt;tool, but the HP/UX compiler insists that the two prototypes are not the&lt;BR /&gt;same and rejects it.&lt;BR /&gt;&lt;BR /&gt;Solutions:&lt;BR /&gt; - widen the chars to ints&lt;BR /&gt; - move to ANSI prototypes&lt;BR /&gt; - disable PARAMS() on that host until ANSIfication proceeds&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Ceesjan&lt;BR /&gt;Thanks to Todd Whitesel for his tribute in &lt;A href="http://sources.redhat.com/" target="_blank"&gt;http://sources.redhat.com/&lt;/A&gt;</description>
      <pubDate>Wed, 12 Jun 2002 07:43:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/inconsistent-parameter-list-c-program/m-p/2742607#M944100</guid>
      <dc:creator>Ceesjan van Hattum</dc:creator>
      <dc:date>2002-06-12T07:43:48Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent Parameter List : C Program</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/inconsistent-parameter-list-c-program/m-p/2742608#M944101</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;This is like :&lt;BR /&gt;&lt;BR /&gt;void itoa ( long, char* );&lt;BR /&gt;&lt;BR /&gt;Error No. is 1711&lt;BR /&gt;&lt;BR /&gt;Any idea is appreciated.&lt;BR /&gt;&lt;BR /&gt;Soumen Ghosh</description>
      <pubDate>Wed, 12 Jun 2002 07:58:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/inconsistent-parameter-list-c-program/m-p/2742608#M944101</guid>
      <dc:creator>Soumen Ghosh_1</dc:creator>
      <dc:date>2002-06-12T07:58:59Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent Parameter List : C Program</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/inconsistent-parameter-list-c-program/m-p/2742609#M944102</link>
      <description>Maybe the function declaration in the header file does not match the implementation in the source file?&lt;BR /&gt;&lt;BR /&gt;Also, try adding the variable names to the type designators. &lt;BR /&gt;&lt;BR /&gt;Also, maybe you have itoa() declared / defined somewhere else in your source code? This is a common function name with implementations available in various C runtime libraries, maybe the compiler is confusing your definition with another one it gets from another header file. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Jun 2002 09:50:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/inconsistent-parameter-list-c-program/m-p/2742609#M944102</guid>
      <dc:creator>Martin Schneider_2</dc:creator>
      <dc:date>2002-06-13T09:50:47Z</dc:date>
    </item>
  </channel>
</rss>

