Re: tgamma function in math library

2010-01-01 Thread Karthik Subramanian
On Fri, Jan 1, 2010 at 11:03 PM, Karthik Subramanian karthik301...@gmail.com wrote: On Fri, Jan 1, 2010 at 10:52 PM, Pierre Abbat p...@phma.optus.nu wrote: I just copied one of my programming projects to the laptop and attempted to compile it. The compiler bombed out on the line:  

Re: tgamma function in math library

2010-01-01 Thread Simon 'corecode' Schubert
Karthik Subramanian wrote: Perhaps you could write a wrapper called gamma() that does something like this: = structutsname *ub; /* malloc, etc. */ if(uname(ub)) { die(); } if (strcmp(ub-sysname, Linux) { tgamma(); } else { gamma(); } That's wont work - you can't call the