From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31735 invoked by alias); 27 Jun 2002 04:08:40 -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 31724 invoked from network); 27 Jun 2002 04:08:37 -0000 Received: from unknown (HELO localhost.redhat.com) (24.112.240.27) by sources.redhat.com with SMTP; 27 Jun 2002 04:08:37 -0000 Received: from ges.redhat.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 58AC23E67 for ; Thu, 27 Jun 2002 00:08:34 -0400 (EDT) Message-ID: <3D1A8FC2.3080102@ges.redhat.com> Date: Wed, 26 Jun 2002 21:08:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0.0) Gecko/20020613 X-Accept-Language: en-us, en MIME-Version: 1.0 To: gdb-patches@sources.redhat.com Subject: [patch/doc] ISO-C -> ISO C .... Content-Type: multipart/mixed; boundary="------------070809000904010401000106" X-SW-Source: 2002-06/txt/msg00551.txt.bz2 This is a multi-part message in MIME format. --------------070809000904010401000106 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 85 Hello, The attached patch clarifies which ISO C gdb assumes. Ok to commit? Andrew --------------070809000904010401000106 Content-Type: text/plain; name="diffs" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="diffs" Content-length: 1285 2002-06-26 Andrew Cagney * gdbint.texinfo (User Interface): ISO C rather than ISO-C. (Coding): Clarify ISO C version that GDB assumes. Index: gdbint.texinfo =================================================================== RCS file: /cvs/src/src/gdb/doc/gdbint.texinfo,v retrieving revision 1.91 diff -u -r1.91 gdbint.texinfo --- gdbint.texinfo 9 Jun 2002 17:15:40 -0000 1.91 +++ gdbint.texinfo 27 Jun 2002 04:02:14 -0000 @@ -946,7 +946,7 @@ This function first opens the tuple and then establishes a cleanup (@pxref{Coding, Cleanups}) to close the tuple. It provides a convenient and correct implementation of the non-portable@footnote{The function -cast is not portable ISO-C.} code sequence: +cast is not portable ISO C.} code sequence: @smallexample struct cleanup *old_cleanup; ui_out_tuple_begin (uiout, "..."); @@ -4793,11 +4793,12 @@ @value{GDBN}, as described in the following sections. -@subsection ISO-C +@subsection ISO C -@value{GDBN} assumes an ISO-C compliant compiler. +@value{GDBN} assumes an ISO/IEC 9899:1990 (a.k.a. ISO C90) compliant +compiler. -@value{GDBN} does not assume an ISO-C or POSIX compliant C library. +@value{GDBN} does not assume an ISO C or POSIX compliant C library. @subsection Memory Management --------------070809000904010401000106--