Remove C++-style comments

This commit is contained in:
goldsimon 2009-12-31 16:49:36 +00:00
parent a566f9d8f2
commit c9e0652526
2 changed files with 1 additions and 2 deletions

View File

@ -23,7 +23,7 @@ static Suite* create_suite(const char* name, TFun *tests, size_t num_tests, SFun
Suite *s = suite_create(name);
for(i = 0; i < num_tests; i++) {
// Core test case
/* Core test case */
TCase *tc_core = tcase_create("Core");
if ((setup != NULL) || (teardown != NULL)) {
tcase_add_checked_fixture(tc_core, setup, teardown);

View File

@ -27,7 +27,6 @@ tcp_remove(struct tcp_pcb* pcb_list)
void
tcp_remove_all(void)
{
//tcp_remove(tcp_bound_pcbs);
tcp_remove(tcp_listen_pcbs.pcbs);
tcp_remove(tcp_active_pcbs);
tcp_remove(tcp_tw_pcbs);