@@ -1,4 +1,4 @@
|
||||
/* $Id: table.c,v 1.5 2001/11/22 13:35:45 ukai Exp $ */
|
||||
/* $Id: table.c,v 1.6 2001/11/22 14:07:38 ukai Exp $ */
|
||||
/*
|
||||
* HTML table
|
||||
*/
|
||||
@@ -3109,11 +3109,7 @@ pushTable(struct table *tbl, struct table *tbl1)
|
||||
tbl->tables_size += MAX_TABLE_N;
|
||||
tmp = New_N(struct table_in, tbl->tables_size);
|
||||
if (tbl->tables)
|
||||
#ifdef __CYGWIN__
|
||||
bcopy((const char *) tbl->tables, (char *) tmp, (size_t) tbl->ntable * sizeof(struct table_in));
|
||||
#else /* not __CYGWIN__ */
|
||||
bcopy(tbl->tables, tmp, tbl->ntable * sizeof(struct table_in));
|
||||
#endif /* not __CYGWIN__ */
|
||||
tbl->tables = tmp;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user