mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 12:23:04 +00:00
Use 'short int' rather than 'short', and similarly for 'long', 'unsigned', etc.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
# Exercising Bison on actual grammars. -*- Autotest -*-
|
||||
|
||||
# Copyright (C) 1989, 1990, 1991, 1992, 2000, 2001, 2002, 2003
|
||||
# Copyright (C) 1989, 1990, 1991, 1992, 2000, 2001, 2002, 2003, 2004
|
||||
# Free Software Foundation, Inc.
|
||||
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
@@ -372,9 +372,9 @@ AT_SETUP([GNU Cim Grammar])
|
||||
|
||||
AT_DATA([[input.y]],
|
||||
[[%union {
|
||||
long token;
|
||||
long ival;
|
||||
long arrdim;
|
||||
long int token;
|
||||
long int ival;
|
||||
long int arrdim;
|
||||
double rval;
|
||||
char *ident;
|
||||
char *tval;
|
||||
|
||||
Reference in New Issue
Block a user