<?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: Function prototypes are an ANSI feature in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/function-prototypes-are-an-ansi-feature/m-p/3672151#M100813</link>
    <description>Verify whether you have the ANSI-C compiler on your system.&lt;BR /&gt;&lt;BR /&gt;# swlist -l product | grep -i "ansi c"&lt;BR /&gt;&lt;BR /&gt;cheers!</description>
    <pubDate>Tue, 15 Nov 2005 13:37:17 GMT</pubDate>
    <dc:creator>Sandman!</dc:creator>
    <dc:date>2005-11-15T13:37:17Z</dc:date>
    <item>
      <title>Function prototypes are an ANSI feature</title>
      <link>https://community.hpe.com/t5/operating-system-linux/function-prototypes-are-an-ansi-feature/m-p/3672148#M100810</link>
      <description>HP-UX B.11.11 입니다.&lt;BR /&gt;/usr/ccs/bin/cc Boundle installed id now present.&lt;BR /&gt;&lt;BR /&gt;follow error&lt;BR /&gt;test.c context...&lt;BR /&gt;&lt;BR /&gt;#include &lt;STDIO.H&gt;&lt;BR /&gt;main(int argc, char **argv)&lt;BR /&gt;{&lt;BR /&gt;        printf("Hello World\n");&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;[by:/test]# cc -o test test.c&lt;BR /&gt;(Bundled) cc: "test.c", line 2: error 1705: Function prototypes are an ANSI feature.&lt;BR /&gt;[by:/test]# &lt;BR /&gt;we are purchas C compiler??&lt;BR /&gt;-and-----------------------------------&lt;BR /&gt;when ANSI feature compiler..&lt;BR /&gt;following context .. bundle CC Compile success.&lt;BR /&gt;#include &lt;STDIO.H&gt;&lt;BR /&gt;main(argc, argv)&lt;BR /&gt;int argc;&lt;BR /&gt;char **argv;&lt;BR /&gt;{&lt;BR /&gt;        printf("Hello World\n");&lt;BR /&gt;}&lt;BR /&gt;&lt;/STDIO.H&gt;&lt;/STDIO.H&gt;</description>
      <pubDate>Tue, 15 Nov 2005 12:58:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/function-prototypes-are-an-ansi-feature/m-p/3672148#M100810</guid>
      <dc:creator>mark.M</dc:creator>
      <dc:date>2005-11-15T12:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: Function prototypes are an ANSI feature</title>
      <link>https://community.hpe.com/t5/operating-system-linux/function-prototypes-are-an-ansi-feature/m-p/3672149#M100811</link>
      <description>This is telling you that the Bundled C compiler only understands K &amp;amp; R syntax. The Bundled compiler is really only intended to be used to build kernels although limited deveopment can be done. If you want to do serious development then you need to purchase the ANSI C compiler or the aCC (C++) compiler. A free alternative is gcc which you can download.</description>
      <pubDate>Tue, 15 Nov 2005 13:01:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/function-prototypes-are-an-ansi-feature/m-p/3672149#M100811</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2005-11-15T13:01:21Z</dc:date>
    </item>
    <item>
      <title>Re: Function prototypes are an ANSI feature</title>
      <link>https://community.hpe.com/t5/operating-system-linux/function-prototypes-are-an-ansi-feature/m-p/3672150#M100812</link>
      <description>int foo (int bar, char *baz)&lt;BR /&gt;&lt;BR /&gt;is ANSI prototyping and enables the compiler to better check if the arguments passed to the function are correct&lt;BR /&gt;&lt;BR /&gt;int foo ()&lt;BR /&gt;int bar;&lt;BR /&gt;char *baz;&lt;BR /&gt;{&lt;BR /&gt;&lt;BR /&gt;is K&amp;amp;R C and does not allow those checks&lt;BR /&gt;&lt;BR /&gt;You are using HP's bundled C compiler, which is NOT ANSI compliant, and also sometimes refered to as the braindead compiler. It's only useful for compiling the kernel&lt;BR /&gt;&lt;BR /&gt;If you want/need ANSI features, buy HP C-ANSI-C or install GNU gcc&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
      <pubDate>Tue, 15 Nov 2005 13:03:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/function-prototypes-are-an-ansi-feature/m-p/3672150#M100812</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2005-11-15T13:03:57Z</dc:date>
    </item>
    <item>
      <title>Re: Function prototypes are an ANSI feature</title>
      <link>https://community.hpe.com/t5/operating-system-linux/function-prototypes-are-an-ansi-feature/m-p/3672151#M100813</link>
      <description>Verify whether you have the ANSI-C compiler on your system.&lt;BR /&gt;&lt;BR /&gt;# swlist -l product | grep -i "ansi c"&lt;BR /&gt;&lt;BR /&gt;cheers!</description>
      <pubDate>Tue, 15 Nov 2005 13:37:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/function-prototypes-are-an-ansi-feature/m-p/3672151#M100813</guid>
      <dc:creator>Sandman!</dc:creator>
      <dc:date>2005-11-15T13:37:17Z</dc:date>
    </item>
    <item>
      <title>Re: Function prototypes are an ANSI feature</title>
      <link>https://community.hpe.com/t5/operating-system-linux/function-prototypes-are-an-ansi-feature/m-p/3672152#M100814</link>
      <description>looks like you have not yet installed the compiler.&lt;BR /&gt;&lt;BR /&gt;You will have to go online to get a code word and install.  I don't think it requires a reboot.last time I installed was 2/2005&lt;BR /&gt;and it was on CD #5013-2240&lt;BR /&gt;&lt;BR /&gt;Rory</description>
      <pubDate>Wed, 16 Nov 2005 06:37:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/function-prototypes-are-an-ansi-feature/m-p/3672152#M100814</guid>
      <dc:creator>Rory R Hammond</dc:creator>
      <dc:date>2005-11-16T06:37:10Z</dc:date>
    </item>
    <item>
      <title>Re: Function prototypes are an ANSI feature</title>
      <link>https://community.hpe.com/t5/operating-system-linux/function-prototypes-are-an-ansi-feature/m-p/3672153#M100815</link>
      <description>Where can I get this bundle?&lt;BR /&gt;I'm not a company member of DSPP, so I cant download it...</description>
      <pubDate>Mon, 30 Jan 2006 05:59:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/function-prototypes-are-an-ansi-feature/m-p/3672153#M100815</guid>
      <dc:creator>Yarema A. Mikhajliv</dc:creator>
      <dc:date>2006-01-30T05:59:28Z</dc:date>
    </item>
    <item>
      <title>Re: Function prototypes are an ANSI feature</title>
      <link>https://community.hpe.com/t5/operating-system-linux/function-prototypes-are-an-ansi-feature/m-p/3672154#M100816</link>
      <description>Note that its a purchase product / codeword locked on distribution cd's&lt;BR /&gt;&lt;BR /&gt;You might consider, as noted above, the GNU C compiler</description>
      <pubDate>Mon, 30 Jan 2006 16:13:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/function-prototypes-are-an-ansi-feature/m-p/3672154#M100816</guid>
      <dc:creator>OldSchool</dc:creator>
      <dc:date>2006-01-30T16:13:48Z</dc:date>
    </item>
  </channel>
</rss>

