From patchwork Mon Apr 28 16:56:02 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ondrej Bilka X-Patchwork-Id: 729 Return-Path: X-Original-To: siddhesh@wilcox.dreamhost.com Delivered-To: siddhesh@wilcox.dreamhost.com Received: from homiemail-mx21.g.dreamhost.com (peon2454.g.dreamhost.com [208.113.200.127]) by wilcox.dreamhost.com (Postfix) with ESMTP id 233CB360060 for ; Mon, 28 Apr 2014 09:56:11 -0700 (PDT) Received: by homiemail-mx21.g.dreamhost.com (Postfix, from userid 14307373) id B5AF6148C162; Mon, 28 Apr 2014 09:56:10 -0700 (PDT) X-Original-To: glibc@patchwork.siddhesh.in Delivered-To: x14307373@homiemail-mx21.g.dreamhost.com Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by homiemail-mx21.g.dreamhost.com (Postfix) with ESMTPS id 88063148C14D for ; Mon, 28 Apr 2014 09:56:10 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:subject:message-id:mime-version :content-type; q=dns; s=default; b=o5/cBuCZkt2qJb08XiTM56pPeB8X0 I0sUSEPm81yIfdA1vqFazKbuxy3VyhD/9koWBcPQtMLpvux0/gNcBgyITFl5Eg73 ByJ5ZDwHBcHr7tQAvGCT02qx9aki/RTxbMsXvjjK/+gsK4MLwbeXvJelrvzGsKqr MjjIXG8jywprok= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:subject:message-id:mime-version :content-type; s=default; bh=7pkVtxJTJfJtoKRV09AW+98hDCQ=; b=DA9 F96nfVFqIdeZtsXmHdwC50sMYwybEXMxhMkipF1ZZHrH90vQPA4L/AEDuEo5rx8P OwntphPfesBdQE9N1yfgSHxQhBpAqVBr63hCr/nr7/ZH1NqLXrqZSuioO+VnbYpn 6HHAHQs89RP1e0BCbMgspdRgG+0167SaFkgiSiFg= Received: (qmail 21692 invoked by alias); 28 Apr 2014 16:56:08 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 21679 invoked by uid 89); 28 Apr 2014 16:56:07 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.6 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, SPF_NEUTRAL autolearn=no version=3.3.2 X-HELO: popelka.ms.mff.cuni.cz Date: Mon, 28 Apr 2014 18:56:02 +0200 From: =?utf-8?B?T25kxZllaiBCw61sa2E=?= To: libc-alpha@sourceware.org Subject: [COMMITED][BZ #16754] Fix types of stream hook functions in manual. Message-ID: <20140428165602.GA27597@domone.podge> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.20 (2009-06-14) X-DH-Original-To: glibc@patchwork.siddhesh.in Manual contains a typo of using type cookie_read_function instead cookie_read_function_t and and similar. Commited as obvious. [BZ #16754] * manual/stdio.texi (Hook functions): Fix types of stream hook functions. diff --git a/manual/stdio.texi b/manual/stdio.texi index efdaaad..e407170 100644 --- a/manual/stdio.texi +++ b/manual/stdio.texi @@ -5305,26 +5305,26 @@ otherwise. @comment stdio.h @comment GNU -@deftp {Data Type} cookie_read_function +@deftp {Data Type} cookie_read_function_t This is the data type that the read function for a custom stream should have. If you declare the function as shown above, this is the type it will have. @end deftp @comment stdio.h @comment GNU -@deftp {Data Type} cookie_write_function +@deftp {Data Type} cookie_write_function_t The data type of the write function for a custom stream. @end deftp @comment stdio.h @comment GNU -@deftp {Data Type} cookie_seek_function +@deftp {Data Type} cookie_seek_function_t The data type of the seek function for a custom stream. @end deftp @comment stdio.h @comment GNU -@deftp {Data Type} cookie_close_function +@deftp {Data Type} cookie_close_function_t The data type of the close function for a custom stream. @end deftp