Subj : Re: Unresolved external '_errno' To : borland.public.cpp.borlandcpp From : Bob Gonder Date : Mon Mar 14 2005 11:07 am Jeff Kish wrote: >I am using Borland 5.02 and the OWL that came with it. >When I try to link the application (the compile goes seemingly fine), >I get the link error: > >"Unresolved external '_errno' I am thinking maybe you turned on or off the runtime library. Without the RTLDLL, errno is a variable. With the RTL, it is a function: GetErrno(). If you have old objects compiled without RTL, and are now linking with RTL, then they wouldn't find an errno. Recheck your settings, then recompile the entire project. (delete all objs to force it if you must) >trying to figure out if maybe a path change or something could cause >the _errno link error. Pathing problems would have more than one minor error. .