From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 48517 invoked by alias); 23 Jul 2017 12:12:11 -0000 Mailing-List: contact newlib-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: newlib-owner@sourceware.org Received: (qmail 48437 invoked by uid 89); 23 Jul 2017 12:12:06 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=_inttypes.h, UD:_inttypes.h, _inttypesh X-HELO: mail-vk0-f43.google.com Received: from mail-vk0-f43.google.com (HELO mail-vk0-f43.google.com) (209.85.213.43) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 23 Jul 2017 12:12:04 +0000 Received: by mail-vk0-f43.google.com with SMTP id y70so9393026vky.3 for ; Sun, 23 Jul 2017 05:12:04 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc; bh=PEfo2w/Ef51CBL0wt8drPr09ChsxQEdzkRx2g80FJtU=; b=d+S8GzHK36vAoTd5V68Kj6sEHKf2zPGRUxjTmUk0qlirQ6NeRM7f0cf2Ft4x6SFaL7 fTNZBSJdLT7ozQ4/agwx2X55ADaCxXLyaHKeJcoBin5LV+kXUGNkqikHFFd2Dnx/5skK G16BqdTR85ecadRkO4K5fE5ZeyU0dVcKBEVkXYIfUeRJL5oKsHxYP0ytKtudwtyFXJGY 0tqcp+MkOo8JgIQJPq401GOGwB7H1tLTdNgYqmIU7iXxM2Iqrm+UPWqhS0eiNpsLkHFV BgYpeaZOh9ksCEdh/R5PqZsB5nd5cbBlX4x6T7wpHcJ+QHNn/qs0BVf/Yeh4R8xf4EJs xZBg== X-Gm-Message-State: AIVw112Slr12ijDvVXptaxSKp5WshPKdDSBvMrmVfjqn/CA7kMdm3wk3 ffbjxI8tz+J350CDocNwXtGTL6hBiRjm X-Received: by 10.31.208.5 with SMTP id h5mr6293356vkg.177.1500811922866; Sun, 23 Jul 2017 05:12:02 -0700 (PDT) MIME-Version: 1.0 Received: by 10.159.59.29 with HTTP; Sun, 23 Jul 2017 05:12:02 -0700 (PDT) In-Reply-To: References: From: Gedare Bloom Date: Sun, 23 Jul 2017 12:12:00 -0000 Message-ID: Subject: Re: Reentrant version of inttypes methods To: Aditya Upadhyay Cc: "newlib@sourceware.org" Content-Type: text/plain; charset="UTF-8" X-IsSubscribed: yes X-SW-Source: 2017/txt/msg00619.txt.bz2 I think the reentrant functions can be declared directly in inttypes.h as other headers do in libc/include. Put the _r (and _l) versions close to the declarations of the non-reentrant. On Sat, Jul 22, 2017 at 7:26 AM, Aditya Upadhyay wrote: > Hello All, > > In FreeBSD, There is a _inttypes.h for reentrant version of inttypes > methods. So, Do i need to make reentrant version of inttypes.h ? It > seems there does not exist something like _inttypes.h stuff in newlib > or Do i have to add the declaration of strtoimax_l and _strtoimax_r in > stdlib.h file ? I think, There should be _inttypes.h header file > support for reentrant version of inttypes method. Please correct me if > i am wrong. > > > Thanks & Regards, > Aditya Upadhyay