V0.8: Update PLI_BYTE definition.

The standard defines this as char not signed char. Using signed char was
causing some compiler warnings in the vpi tests with modern compilers.
This commit is contained in:
Cary R 2010-12-22 09:35:21 -08:00 committed by Stephen Williams
parent 9bab275716
commit 3cc12e8446
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ typedef int32_t PLI_INT32;
typedef signed short PLI_INT16;
typedef unsigned short PLI_UINT16;
typedef signed char PLI_BYTE8;
typedef char PLI_BYTE8;
typedef unsigned char PLI_UBYTE8;
# define PLI_UINT64_FMT PRIu64