| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> c.d.o.server -> Re: Error while including math.h
> It is compiled fine and run without any problem. However, if
> i add a statement "#include <math.h>", i get bunch of proc compilation
> error. It seems like Pro C cannot find the math library.
Actually, proc probably can not find math.h in your include directory.
It is the linker that will look for the math library (after successful compilation).
Do
find / -type f -name "math.h" -print 2>/dev/null
once found, make sure the path to math.h is in your include path.
Kirill Received on Tue Mar 19 2002 - 12:11:59 CST
![]() |
![]() |