Return-path: Received: from lo.gmane.org ([80.91.229.12]:37594 "EHLO lo.gmane.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755658Ab1AKNKL (ORCPT ); Tue, 11 Jan 2011 08:10:11 -0500 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1PcdzA-0007uA-Ox for linux-wireless@vger.kernel.org; Tue, 11 Jan 2011 14:10:04 +0100 Received: from proxyext.iabg.de ([proxyext.iabg.de]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 11 Jan 2011 14:10:04 +0100 Received: from pommnitz by proxyext.iabg.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 11 Jan 2011 14:10:04 +0100 To: linux-wireless@vger.kernel.org From: jpo234 Subject: Re: [PATCH v2 2/4] iw: Add channel busy time to survey Date: Tue, 11 Jan 2011 13:08:40 +0000 (UTC) Message-ID: References: <20110111005107.10231.81618.stgit@localhost6.localdomain6> <20110111005112.10231.46375.stgit@localhost6.localdomain6> <1294734744.3611.3.camel@jlt3.sipsolutions.net> <1294750836.3611.25.camel@jlt3.sipsolutions.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: linux-wireless-owner@vger.kernel.org List-ID: Johannes Berg writes: > > see http://www.dinkumware.com/manuals/?manual=compleat&page=inttypes.html#PRIu64 > > Oi, that's complicated. Patch welcome I guess. Not really: #include #include int main() { printf ("unsigned long long: %llu\n", 1llu); printf ("uint64_t: %"PRIu64"\n", (uint64_t)1); return 0; }