|
|||||||||||
|
documentation/3227: type of fopen()
From: Kamo Hiroyasu <wd(at)ics.nara-wu.ac.jp>
Date: Tue Apr 22 2003 - 03:43:14 EDT
System : OpenBSD 3.2 Architecture: OpenBSD.sparc Machine : sparc >Description: The type of fopen() described in the SYNOPSIS section of the manpage does not match to the current declaration / definition. In the manpage fopen(3):
FILE *
fopen(char *path, char *mode);
In /usr/include/stdio.h :
FILE *fopen(const char *, const char *);
In /usr/src/lib/libc/stdio/fopen.c :
FILE *
fopen(file, mode)
const char *file;
const char *mode;
{
>How-To-Repeat:
>Fix:
>Release-Note:
This archive was generated by hypermail 2.1.8 : Wed Aug 23 2006 - 13:29:54 EDT |
||||||||||
|
|||||||||||