From mboxrd@z Thu Jan 1 00:00:00 1970 Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <473CA84C.36276EF9@null.net> References: <8FE905C8-9071-4DF4-B4E2-76A3991C4D0B@mac.com> <7b5cf09fd7ee547030c620733fb4cee1@terzarima.net> <473CA84C.36276EF9@null.net> Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <88FF26A2-990F-4481-B3C7-153565E069BF@mac.com> Content-Transfer-Encoding: 7bit From: Pietro Gagliardi Subject: Re: [9fans] Problems with pcc Date: Fri, 16 Nov 2007 14:46:25 -0500 To: Fans of the OS Plan 9 from Bell Labs <9fans@cse.psu.edu> Topicbox-Message-UUID: fd643150-ead2-11e9-9d60-3106f5b1d025 double cbrt(double x) { return pow(x, 1.0 / 3.0); } I'm trying to find an intuitive implementation of gamma(). On Nov 16, 2007, at 5:19 AM, Douglas A. Gwyn wrote: > cbrt is in the 1999 C standard. > However, my version of "hoc" doesn't have a "cbrt" function, > and I've never felt the need for one.