home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: gnu.gcc.bug
- Path: sparky!uunet!cis.ohio-state.edu!qin.berkeley.edu!talvola
- From: talvola@qin.berkeley.edu (Erik Talvola)
- Subject: Problem in gcc v2.2.2 compilation under VMS
- Message-ID: <9209141804.AA15703@qin.Berkeley.EDU>
- Sender: gnulists@ai.mit.edu
- Organization: GNUs Not Usenet
- Distribution: gnu
- Date: Mon, 14 Sep 1992 18:04:59 GMT
- Approved: bug-gcc@prep.ai.mit.edu
- Lines: 18
-
- GCC v2.2.2 under VAX-VMS, compiling with GCC v2.2.2
-
- In rtl.c, ftell() is declared as:
-
- extern long ftell();
-
- But, in the VMS stdio.h header file, there is a definition
- of ftell() as:
-
- int ftell (FILE *file_ptr);
-
- which causes the declaration in rtl.c to get an error message.
- Either the rtl.c definition should be removed, or an #ifndef VMS
- needs to be put around it.
-
- --- Erik
-
-
-