Tlink error messages from turbo C - help solicited.
John Gordon
gordon at osiris.cso.uiuc.edu
Wed Oct 24 06:04:40 AEST 1990
The reason you're getting all those 'fixup overflow' errors is because
you are compiling in the small model, but linking in the huge model libraries.
(Turbo C defaults to the small model.) Try adding the '-mh' flag to the
tcc call.
>Undefined symbol '_main' in module C0H
>Undefined symbol '_prnt_fil' in module FUNCTLST.C
>Undefined symbol '_add' in module FUNCTLST.C
You are calling these functions, but they are not defined anywhere.
(i.e. they don't exist. Create them.)
---
John Gordon
Internet: gordon at osiris.cso.uiuc.edu #include <disclaimer.h>
gordon at cerl.cecer.army.mil #include <clever_saying.h>
GEnie: j.gordon14
More information about the Comp.lang.c
mailing list