diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-07-26 15:03:16 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-07-26 15:03:16 +0000 |
| commit | 568e5b7d3d1ea08b27e8b6d27c232bb02013d980 (patch) | |
| tree | f43bcbbbea28f0be235adcb8fbfd15e280c30a06 /ext/digest/sha2 | |
| parent | 858f51db206618ab81f596a66531b1e40903de63 (diff) | |
| download | ruby-568e5b7d3d1ea08b27e8b6d27c232bb02013d980.tar.gz ruby-568e5b7d3d1ea08b27e8b6d27c232bb02013d980.tar.xz ruby-568e5b7d3d1ea08b27e8b6d27c232bb02013d980.zip | |
* ext/tk/lib/tk.rb (TkCore::chooseDirectory): back up wrongly
removed method.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4175 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/digest/sha2')
| -rw-r--r-- | ext/digest/sha2/sha2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/digest/sha2/sha2.c b/ext/digest/sha2/sha2.c index 31b5ff169..24a57ded0 100644 --- a/ext/digest/sha2/sha2.c +++ b/ext/digest/sha2/sha2.c @@ -67,7 +67,7 @@ typedef uint8_t sha2_byte; /* Exactly 1 byte */ typedef uint32_t sha2_word32; /* Exactly 4 bytes */ typedef uint64_t sha2_word64; /* Exactly 8 bytes */ -#if defined(__GNUC__) +#if defined(__GNUC__) || defined(_HPUX_SOURCE) #define ULL(number) number##ULL #else #define ULL(number) (uint64_t)(number) |
