2009-11-25 02:18 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/tests/bldtest/bldtest.c
    * disabled requirement for signed 'char' type - current Harbour code
      should work with 'char' defined as signed and unsigned value.
This commit is contained in:
Przemyslaw Czerpak
2009-11-25 01:19:03 +00:00
parent 04d825b402
commit a8768c8546
2 changed files with 6 additions and 6 deletions

View File

@@ -17,6 +17,11 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-11-25 02:18 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/tests/bldtest/bldtest.c
* disabled requirement for signed 'char' type - current Harbour code
should work with 'char' defined as signed and unsigned value.
2009-11-25 00:50 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/src/vm/fm.c
* enabled HB_FM_DL_ALLOC by default in OS2 OpenWatcom builds

View File

@@ -92,12 +92,7 @@ int main()
}
n = (char)255;
printf( "n=%d -> (char) type is %ssinged %s\n", n, n < 0 ? "" : "un",
n < 0 ? "OK" : "BAD" );
if ( n >= 0 )
{
iRet = 1;
}
printf( "n=%d -> (char) type is %ssigned\n", n, n < 0 ? "" : "un" );
if ( iRet )
{