Hi,
The *CRT*.O rotuines are the LOADER bootstrap programs. They are the system supplied modules for
start() ( called from the LOADER )
which call your
main().
They come in a couple flavors. one set for executables and and another set for Libraries
The sets are for
normal runtime,
Prof runtime,
lprof run time,
mprof runtime,
gprof runtime.
if you are getting an error on your LINK you probably have your compiler configured wrong to be able to find these .o's. normally they are in /usr/lib or /usr/ccs/lib or in your compilers lib directories.
-----