Ignore:
Timestamp:
2001-06-13T12:24:49+12:00 (23 years ago)
Author:
jrm21
Message:

1) replaced obsolete bzero() calls with memset() calls.
2) Makefile.in fixed for c++ variables (CXX instead of CPP), and GSDLOS is now

set from configure, so files are installed in the right place.

3) text.pass1.cpp now prints an error message if index file can't be created.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/mgpp/text/comp_dict.cpp

    r2468 r2541  
    8181  words = ht->words;
    8282
    83   bzero ((char *) ht->table, ht_size * sizeof (ht->table[0]));
     83  memset (ht->table, '\0', ht_size * sizeof (ht->table[0]));
    8484
    8585  if (!(allwords = (u_char *) Xmalloc (sizeof (u_char) * cfh->uncompressed_size)))
Note: See TracChangeset for help on using the changeset viewer.