Bessel Functions
Feb. 17th, 2012 07:40 pmYou better watch out when XSI is enabled!
alexo@codedot:/tmp$ getconf _XOPEN_UNIX
1
alexo@codedot:/tmp$ cat bessel.c
#include <math.h>
#include <stdio.h>
main()
{
{
static *j0, *j1, *jn;
printf("%p %p %p\n", j0, j1, jn);
}
{
static *y0, *y1, *yn;
printf("%p %p %p\n", y0, y1, yn);
}
printf("%p %p %p\n", j0, j1, jn);
printf("%p %p %p\n", y0, y1, yn);
return 0;
}
alexo@codedot:/tmp$ c99 -lm bessel.c 2>&- && ./a.out
0x0 0x0 0x0
0x0 0x0 0x0
0x106a70580 0x106a70e00 0x106a71680
0x106a709d0 0x106a71230 0x106a71bc0
alexo@codedot:/tmp$