]> git.pld-linux.org Git - packages/perl-Crypt-RIPEMD160.git/blame - perl-Crypt-RIPEMD160-types.patch
- add CC to %{__make}
[packages/perl-Crypt-RIPEMD160.git] / perl-Crypt-RIPEMD160-types.patch
CommitLineData
672ab7dd
JB
1--- Crypt-RIPEMD160-0.04/rmd160.h.orig 1998-04-07 11:32:36.000000000 +0200
2+++ Crypt-RIPEMD160-0.04/rmd160.h 2004-08-28 22:45:08.162936140 +0200
3@@ -20,12 +20,13 @@
4
5 /********************************************************************/
6
7+#include <stdint.h>
8 /* typedef 8, 16 and 32 bit types, resp. */
9 /* adapt these, if necessary,
10 for your operating system and compiler */
11-typedef unsigned char byte; /* unsigned 8-bit integer */
12-typedef unsigned short word; /* unsigned 16-bit integer */
13-typedef unsigned long dword; /* unsigned 32-bit integer */
14+typedef uint8_t byte; /* unsigned 8-bit integer */
15+typedef uint16_t word; /* unsigned 16-bit integer */
16+typedef uint32_t dword; /* unsigned 32-bit integer */
17
18
19 /********************************************************************/
This page took 0.230101 seconds and 4 git commands to generate.