From owner-freebsd-questions Tue Aug 8 23:14: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from merkur.hrz.uni-giessen.de (merkur.hrz.uni-giessen.de [134.176.2.12]) by hub.freebsd.org (Postfix) with ESMTP id 9CA6837B696 for ; Tue, 8 Aug 2000 23:13:55 -0700 (PDT) (envelope-from Ariel.Burbaickij@mni.fh-giessen.de) Received: from caspar.mni.fh-giessen.de by merkur.hrz.uni-giessen.de with ESMTP for questions@freebsd.org; Wed, 9 Aug 2000 08:13:48 +0200 Received: from sun34.mni.fh-giessen.de ([134.176.183.134] helo=sun34) by caspar.mni.fh-giessen.de with esmtp (Exim 2.12 #6) id 13MP8Q-000307-00 for questions@freebsd.org; Wed, 9 Aug 2000 08:14:38 +0200 Date: Wed, 9 Aug 2000 08:15:33 +0200 (MET DST) From: Ariel Burbaickij X-Sender: hg9456@sun34 To: questions@freebsd.org Subject: How to inhibit inline functions appearing during debugging(-g) fromshowing up ? Message-Id: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am debugging some programm of mine with ddd as frontend.I see soem functions I have neither defined nor declared nor included of the form: static __inline int __isctype(_BSD_CT_RUNE_T_ _c, unsigned long _f) { return (_c < 0 || _c >= _CACHED_RUNES) ? 0 : !!(_DefaultRuneLocale.runetype[_c] & _f); } or static __inline _BSD_CT_RUNE_T_ __toupper(_BSD_CT_RUNE_T_ _c) { return (_c < 0 || _c >= _CACHED_RUNES) ? ___toupper(_c) : _CurrentRuneLocale->mapupper[_c]; } They hinder to see the structure of programm to me and are rather cumbersome. How can I inhibit them showing up in the listing ? Regards, Ariel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message