2000-08-02 03:14 UTC+0100 Victor Szakats <info@szelvesz.hu>

This commit is contained in:
Viktor Szakats
2000-08-02 01:17:26 +00:00
parent 3625016326
commit f29fce5395
2 changed files with 8 additions and 9 deletions

View File

@@ -1,3 +1,8 @@
2000-08-02 03:14 UTC+0100 Victor Szakats <info@szelvesz.hu>
* source/common/hbver.c
+ Better, generic detection for bits.
2000-08-01-21:20 GMT -3 Luiz Rafael Culik <culik@sl.conex.net>
*contrib/hbzlib/zipfile2.c
%some enhacements and fixed a bug inside hb___GetFilesNamesFromZip

View File

@@ -376,15 +376,9 @@ char * hb_verCompiler( void )
#elif defined(__BORLANDC__)
{
switch( sizeof( int ) )
{
case 2:
strcat( pszCompiler, " (16 bit)" );
break;
case 4:
strcat( pszCompiler, " (32 bit)" );
break;
}
char szSub[ 32 ];
sprintf( szSub, " (%i bit)", ( int ) ( sizeof( int ) * 8 ) );
strcat( pszCompiler, szSub );
}
#endif