<?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 gcc error in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/gcc-error/m-p/3032585#M76031</link>
    <description>hello all! I currently need to compile a program using gcc. however that program outputs an error about &lt;BR /&gt;_IOREAD undeclared. I noticed that this is because this is not defined in stdio.h. Is there a work around I could use to still be able to compile the program? Is there a flag or option for this?&lt;BR /&gt;&lt;BR /&gt;thanks for any help! :)&lt;BR /&gt;</description>
    <pubDate>Thu, 24 Jul 2003 14:36:15 GMT</pubDate>
    <dc:creator>mango_1</dc:creator>
    <dc:date>2003-07-24T14:36:15Z</dc:date>
    <item>
      <title>gcc error</title>
      <link>https://community.hpe.com/t5/operating-system-linux/gcc-error/m-p/3032585#M76031</link>
      <description>hello all! I currently need to compile a program using gcc. however that program outputs an error about &lt;BR /&gt;_IOREAD undeclared. I noticed that this is because this is not defined in stdio.h. Is there a work around I could use to still be able to compile the program? Is there a flag or option for this?&lt;BR /&gt;&lt;BR /&gt;thanks for any help! :)&lt;BR /&gt;</description>
      <pubDate>Thu, 24 Jul 2003 14:36:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/gcc-error/m-p/3032585#M76031</guid>
      <dc:creator>mango_1</dc:creator>
      <dc:date>2003-07-24T14:36:15Z</dc:date>
    </item>
    <item>
      <title>Re: gcc error</title>
      <link>https://community.hpe.com/t5/operating-system-linux/gcc-error/m-p/3032586#M76032</link>
      <description>define _IOREAD in stdio.h&lt;BR /&gt;&lt;BR /&gt;see :&lt;BR /&gt;&lt;A href="http://www.ugrad.cs.ubc.ca/spider/xinu/xinu.sun3/xref/extra/ref-_" target="_blank"&gt;http://www.ugrad.cs.ubc.ca/spider/xinu/xinu.sun3/xref/extra/ref-_&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;or see:&lt;BR /&gt;/* @(#)stdio.h 1.1 (Berkeley) 3/9/81 */&lt;BR /&gt;/* Modified for Sun: BUFSIZE set to 512. Per Bothner 82/Jun/14 */&lt;BR /&gt;/* ifdef Vsystem hack: Bothner June 83 */&lt;BR /&gt;#ifdef Vsystem&lt;BR /&gt;#include &lt;VIO.H&gt;&lt;BR /&gt;#else&lt;BR /&gt;#define BUFSIZ 512&lt;BR /&gt;#define _NFILE 20&lt;BR /&gt;# ifndef FILE&lt;BR /&gt;extern struct _iobuf {&lt;BR /&gt; int _cnt;&lt;BR /&gt; char *_ptr;&lt;BR /&gt; char *_base;&lt;BR /&gt; int _bufsiz;&lt;BR /&gt; short _flag;&lt;BR /&gt; char _file;&lt;BR /&gt;} _iob[_NFILE];&lt;BR /&gt;# endif&lt;BR /&gt;&lt;BR /&gt;#define _IOREAD 01&lt;BR /&gt;#define _IOWRT 02&lt;BR /&gt;#define _IONBF 04&lt;BR /&gt;#define _IOMYBUF 010&lt;BR /&gt;#define _IOEOF 020&lt;BR /&gt;#define _IOERR 040&lt;BR /&gt;#define _IOSTRG 0100&lt;BR /&gt;#define _IOLBF 0200&lt;BR /&gt;#define _IORW 0400&lt;BR /&gt;#define NULL 0&lt;BR /&gt;#define FILE struct _iobuf&lt;BR /&gt;#define EOF (-1)&lt;BR /&gt;&lt;BR /&gt;#define stdin (&amp;amp;_iob[0])&lt;BR /&gt;#define stdout (&amp;amp;_iob[1])&lt;BR /&gt;#define stderr (&amp;amp;_iob[2])&lt;BR /&gt;#define getc(p)  (--(p)-&amp;gt;_cnt&amp;gt;=0? *(p)-&amp;gt;_ptr++&amp;amp;0377:_filbuf(p))&lt;BR /&gt;#define getchar() getc(stdin)&lt;BR /&gt;#define putc(x,p) (--(p)-&amp;gt;_cnt&amp;gt;=0? ((int)(*(p)-&amp;gt;_ptr++=(unsigned)(x))):_flsbuf((unsigned)(x),p))&lt;BR /&gt;#define putchar(x) putc(x,stdout)&lt;BR /&gt;#define feof(p)  (((p)-&amp;gt;_flag&amp;amp;_IOEOF)!=0)&lt;BR /&gt;#define ferror(p) (((p)-&amp;gt;_flag&amp;amp;_IOERR)!=0)&lt;BR /&gt;#define fileno(p) ((p)-&amp;gt;_file)&lt;BR /&gt;&lt;BR /&gt;FILE *fopen();&lt;BR /&gt;FILE *fdopen();&lt;BR /&gt;FILE *freopen();&lt;BR /&gt;long ftell();&lt;BR /&gt;char *fgets();&lt;BR /&gt;#endif&lt;BR /&gt;&lt;BR /&gt;&lt;/VIO.H&gt;</description>
      <pubDate>Thu, 24 Jul 2003 15:43:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/gcc-error/m-p/3032586#M76032</guid>
      <dc:creator>Jairo Campana</dc:creator>
      <dc:date>2003-07-24T15:43:25Z</dc:date>
    </item>
    <item>
      <title>Re: gcc error</title>
      <link>https://community.hpe.com/t5/operating-system-linux/gcc-error/m-p/3032587#M76033</link>
      <description>Hello!&lt;BR /&gt;&lt;BR /&gt;Could be that you have coruped headear files&lt;BR /&gt;of your gcc or you just need to patch them.&lt;BR /&gt;&lt;BR /&gt;Caesar</description>
      <pubDate>Thu, 24 Jul 2003 19:40:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/gcc-error/m-p/3032587#M76033</guid>
      <dc:creator>Caesar_3</dc:creator>
      <dc:date>2003-07-24T19:40:21Z</dc:date>
    </item>
  </channel>
</rss>

