1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

moved stack from header to C file

This commit is contained in:
Oleg Hahm 2013-11-21 00:06:49 +01:00
parent 561531f64c
commit 479443eae0
2 changed files with 1 additions and 2 deletions

View File

@ -31,6 +31,7 @@
#include "tcp_timer.h"
char tcp_timer_stack[TCP_TIMER_STACKSIZE];
void handle_synchro_timeout(socket_internal_t *current_socket)
{

View File

@ -28,6 +28,4 @@
void tcp_general_timer(void);
char tcp_timer_stack[TCP_TIMER_STACKSIZE];
#endif /* TCP_TIMER_H_ */