home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.sys.next.programmer
- Path: sparky!uunet!nevada.edu!oliverm
- From: oliverm@nevada.edu (Moises Oliveira)
- Subject: Re: Manpages in Section 3 gone wrong !? -NO
- Message-ID: <1992Nov6.050404.1551@nevada.edu>
- Sender: news@nevada.edu (USENET News System)
- Nntp-Posting-Host: helios.nevada.edu
- Organization: University of Nevada System Computing Services
- References: <BUZZ.92Nov5235323@hektor.cs.tu-berlin.de>
- Date: Fri, 6 Nov 1992 05:04:04 GMT
- Lines: 18
-
- In article <BUZZ.92Nov5235323@hektor.cs.tu-berlin.de> buzz@cs.tu-berlin.de (Bastian Schlueter) writes:
- >Hello Everybody,
- >
- >I just noticed that after installing NS3.0 my manpages seem to be
- >wrong. All manpages in Section 3 mention the wrong include files :-(
- >For example the manpage for printf() says that one has to include the
- >file stdio.h. But this file doesn't exist, you have to use ansi/stdio.h.
-
- My printf man page says:
- #include <stdio.h>
-
- That line will import stdio. The NeXT C compiler will automagically
- look in the right place (under ansi)
-
- You do not need to type
- #include <ansi/stdio.h>
-
-
-