tcp_timer_needed should be a noop when using the raw API.Fix link error bug #2489

This commit is contained in:
jani 2003-02-07 10:13:51 +00:00
parent dd2fa15e8a
commit 1868b2d244

View File

@ -396,7 +396,11 @@ int tcp_pcbs_sane(void);
#define tcp_pcbs_sane() 1
#endif /* TCP_DEBUG */
#if NO_SYS
#define tcp_timer_needed()
#else
void tcp_timer_needed(void);
#endif
/* The TCP PCB lists. */
extern struct tcp_pcb_listen *tcp_listen_pcbs; /* List of all TCP PCBs in LISTEN state. */