home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / sys / next / programm / 7070 < prev    next >
Encoding:
Text File  |  1992-11-07  |  1.1 KB  |  31 lines

  1. Newsgroups: comp.sys.next.programmer
  2. Path: sparky!uunet!nevada.edu!oliverm
  3. From: oliverm@nevada.edu (Moises Oliveira)
  4. Subject: Re: Manpages in Section 3 gone wrong !? -NO
  5. Message-ID: <1992Nov6.050404.1551@nevada.edu>
  6. Sender: news@nevada.edu (USENET News System)
  7. Nntp-Posting-Host: helios.nevada.edu
  8. Organization: University of Nevada System Computing Services
  9. References: <BUZZ.92Nov5235323@hektor.cs.tu-berlin.de>
  10. Date: Fri, 6 Nov 1992 05:04:04 GMT
  11. Lines: 18
  12.  
  13. In article <BUZZ.92Nov5235323@hektor.cs.tu-berlin.de> buzz@cs.tu-berlin.de (Bastian Schlueter) writes:
  14. >Hello Everybody,
  15. >
  16. >I just noticed that after installing NS3.0 my manpages seem to be
  17. >wrong. All manpages in Section 3 mention the wrong include files :-(
  18. >For example the manpage for printf() says that one has to include the
  19. >file stdio.h. But this file doesn't exist, you have to use ansi/stdio.h.
  20.  
  21. My printf man page says:
  22.      #include <stdio.h>
  23.  
  24. That line will import stdio.  The NeXT C compiler will automagically
  25. look in the right place (under ansi)
  26.  
  27. You do not need to type
  28.     #include <ansi/stdio.h>
  29.  
  30.  
  31.