tags:

views:

50

answers:

1

I got the task to rewrite the library lwIP to OOP style, taking as an object stream, I began to understand, to climb into this library, but that's the problem: src\include\lwip\arch.h include file cc.h (line 43) which can not find neither I nor the compiler

+2  A: 

cc.h is part of the OS emulation layer, this is one of the file you need to port lwip to your particular operating system. Porting lwip

If you want to see what it looks like, you should download an OS like freeRTOS, i think.

LB