[email protected] wrote:

i just noticed a problem with the GCC compiler for ARM, in api.h there is the line:

#define netconn_write(conn, dataptr, size, apiflags) \
          netconn_write_partly(conn, dataptr, size, apiflags, NULL)

which will cause an error (netconn_write will not be found here).


I cannot test on GCC for ARM right now, but according to my knowledge of the C preprocessor, this is a perfectly valid line: a line ending on a backspace means the preprocessor regards the line as continued with the next line's contents. This is used in other places, too (e.g. PP_HTONL definition in def.h).

Simon

_______________________________________________
lwip-users mailing list
[email protected]
https://lists.nongnu.org/mailman/listinfo/lwip-users

Reply via email to