summaryrefslogtreecommitdiff
path: root/tables_shared.h
diff options
context:
space:
mode:
authormillaway <millaway>2002-08-21 01:54:20 +0000
committermillaway <millaway>2002-08-21 01:54:20 +0000
commit4c80886146ca2cb7e2450c7133ea52de97ca5fcf (patch)
treeb0c4c19f3e59820b75dd2e750a72c0a4dbf21bd6 /tables_shared.h
parent08b61b0397c039c21353d894fda0cb8bdc0d77e6 (diff)
downloadflex-4c80886146ca2cb7e2450c7133ea52de97ca5fcf.tar.gz
More work on tables.
Diffstat (limited to 'tables_shared.h')
-rw-r--r--tables_shared.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tables_shared.h b/tables_shared.h
index eec13e0..3ef0905 100644
--- a/tables_shared.h
+++ b/tables_shared.h
@@ -72,9 +72,9 @@ enum yytbl_id
/** bit flags for t_flags field of struct yytbl_data */
enum yytbl_flags
{
- YYT_DATA8 = 0x01, /**< data is an array of type int8 */
- YYT_DATA16 = 0x02, /**< data is an array of type int16 */
- YYT_DATA32 = 0x04, /**< data is an array of type int32 */
+ YYT_DATA8 = 0x01, /**< data is an array of type int8_t */
+ YYT_DATA16 = 0x02, /**< data is an array of type int16_t */
+ YYT_DATA32 = 0x04, /**< data is an array of type int32_t */
YYT_PTRANS = 0x08, /**< data is a list of indexes of entries
into the expanded `yy_transition'
array. See notes in manual. */