From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3002 invoked by alias); 14 May 2005 08:56:05 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 2956 invoked from network); 14 May 2005 08:55:57 -0000 Received: from unknown (HELO legolas.inter.net.il) (192.114.186.24) by sourceware.org with SMTP; 14 May 2005 08:55:57 -0000 Received: from zaretski (IGLD-83-130-254-105.inter.net.il [83.130.254.105]) by legolas.inter.net.il (MOS 3.5.6-GR) with ESMTP id EJJ52087 (AUTH halo1); Sat, 14 May 2005 11:55:51 +0300 (IDT) Date: Sat, 14 May 2005 09:23:00 -0000 From: "Eli Zaretskii" To: gcc-patches@gcc.gnu.org, gdb-patches@sourceware.org Message-ID: <01c55862$Blat.v2.4$44a795c0@zahav.net.il> Content-Transfer-Encoding: 7BIT Content-Type: text/plain; charset=ISO-8859-1 Subject: [PATCH] Fix deftypefn in fopen_unlocked.c Reply-to: Eli Zaretskii X-SW-Source: 2005-05/txt/msg00334.txt.bz2 More of the same: 2005-05-14 Eli Zaretskii * fopen_unlocked.c: Enclose multi-word data types in @deftypefn in braces. Index: libiberty/fopen_unlocked.c =================================================================== RCS file: /cvs/src/src/libiberty/fopen_unlocked.c,v retrieving revision 1.4 diff -u -r1.4 fopen_unlocked.c --- libiberty/fopen_unlocked.c 10 May 2005 15:33:33 -0000 1.4 +++ libiberty/fopen_unlocked.c 14 May 2005 08:53:13 -0000 @@ -36,7 +36,7 @@ @end deftypefn -@deftypefn Extension FILE * fopen_unlocked (const char *@var{path}, const char * @var{mode}) +@deftypefn Extension {FILE *} fopen_unlocked (const char *@var{path}, const char * @var{mode}) Opens and returns a @code{FILE} pointer via @code{fopen}. If the operating system supports it, ensure that the stream is setup to avoid @@ -45,7 +45,7 @@ @end deftypefn -@deftypefn Extension FILE * fdopen_unlocked (int @var{fildes}, const char * @var{mode}) +@deftypefn Extension {FILE *} fdopen_unlocked (int @var{fildes}, const char * @var{mode}) Opens and returns a @code{FILE} pointer via @code{fdopen}. If the operating system supports it, ensure that the stream is setup to avoid @@ -54,7 +54,7 @@ @end deftypefn -@deftypefn Extension FILE * freopen_unlocked (const char * @var{path}, const char * @var{mode}, FILE * @var{stream}) +@deftypefn Extension {FILE *} freopen_unlocked (const char * @var{path}, const char * @var{mode}, FILE * @var{stream}) Opens and returns a @code{FILE} pointer via @code{freopen}. If the operating system supports it, ensure that the stream is setup to avoid