On January 1, 2003 11:46 am, Shachar Shemesh wrote:
I tried adding msvcrt to "IMPORTS", but if I try to include "msvcrt/string.h", I get tons of conflicts with other includes over WCHAR and such.
If you _really_ want to link with msvcrt (why?), you should add
IMPORTS = msvcrt EXTRAINCL = -I$(TOPSRCDIR)/include/msvcrt
to the Makefile.in, and simply
#include <string.h>
in the .c file.