diff options
author | (name lost) <unknown@unknown> | 1997-01-25 14:01:05 +1200 |
---|---|---|
committer | Chip Salzenberg <chip@atlantic.net> | 1997-03-01 18:40:49 +1200 |
commit | 4b24d6896c46687d9b56b06c0a61d831247ac860 (patch) | |
tree | feb35ec80d35242fa35bdbf6a3ec380b578afbdf /utils | |
parent | 352066ad3923d8394d12b31d41a5de261358bcd3 (diff) | |
download | perl-4b24d6896c46687d9b56b06c0a61d831247ac860.tar.gz |
Support 'long long' in h2ph
Diffstat (limited to 'utils')
-rw-r--r-- | utils/h2ph.PL | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/h2ph.PL b/utils/h2ph.PL index 2aa57ad2f3..70f9e01bc1 100644 --- a/utils/h2ph.PL +++ b/utils/h2ph.PL @@ -228,7 +228,7 @@ sub expr { $id .= ' ' . $1; $isatype{$id} = 1; } - elsif ($id eq 'unsigned') { + elsif ($id eq 'unsigned' || $id eq 'long') { s/^\s+(\w+)//; $id .= ' ' . $1; $isatype{$id} = 1; |