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: =?utf-8?b?T25kxZllaiBCw61sa2E=?= X-Patchwork-Id: 343499 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org 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 ozlabs.org (Postfix) with ESMTPS id 0433B1400BE for ; Tue, 29 Apr 2014 02:56:13 +1000 (EST) 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=X8l8Hsz0HX4Os26zZCsgJvZPm9zEE qw/J4LC3UCF/9rO2pTCsEcW6d0njtDkJiA96jyR8w9nO04sQ2nwxfNseVii3c9WK WpabnR/SZ5CSiFBBaV2ChEb1CeHxJAkszFDjNbYLptwrjZiLEgXwC66WpnU+jBXN TX245pWh+bwld4= 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=vIg UpfO4PqyaBnOYX6oAH12sNjba+hwAeUEZ98wje0GIH/9+v5BANAMxowZ9qCEmsvl FcvzAteukgzvQ0/yCO6HxF6Xtzuwd9scr0IehtP5OM2Ew8vF2m+mP+khdfBvMp8K jqLqdEW4lcOXmCvDSB5dT6BB4mSHoFQcVNsEtMTI= 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) 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