Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-projects commit in portage-utils/libq: hash_fd.c md5_sha1_sum.c
Date: Fri, 27 Mar 2009 20:42:27
Message-Id: E1LnIsj-0002Hh-AQ@stork.gentoo.org
1 grobian 09/03/27 20:42:25
2
3 Modified: hash_fd.c md5_sha1_sum.c
4 Log:
5 use inttypes.h instead of stdint.h for Solaris 9
6
7 Revision Changes Path
8 1.6 portage-utils/libq/hash_fd.c
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/libq/hash_fd.c?rev=1.6&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/libq/hash_fd.c?rev=1.6&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/libq/hash_fd.c?r1=1.5&r2=1.6
13
14 Index: hash_fd.c
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-projects/portage-utils/libq/hash_fd.c,v
17 retrieving revision 1.5
18 retrieving revision 1.6
19 diff -u -r1.5 -r1.6
20 --- hash_fd.c 23 May 2007 13:47:31 -0000 1.5
21 +++ hash_fd.c 27 Mar 2009 20:42:25 -0000 1.6
22 @@ -23,7 +23,7 @@
23 #include <fcntl.h>
24 #include <limits.h>
25 #include <stdio.h>
26 -#include <stdint.h>
27 +#include <inttypes.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <unistd.h>
31
32
33
34 1.5 portage-utils/libq/md5_sha1_sum.c
35
36 file : http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/libq/md5_sha1_sum.c?rev=1.5&view=markup
37 plain: http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/libq/md5_sha1_sum.c?rev=1.5&content-type=text/plain
38 diff : http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/libq/md5_sha1_sum.c?r1=1.4&r2=1.5
39
40 Index: md5_sha1_sum.c
41 ===================================================================
42 RCS file: /var/cvsroot/gentoo-projects/portage-utils/libq/md5_sha1_sum.c,v
43 retrieving revision 1.4
44 retrieving revision 1.5
45 diff -u -r1.4 -r1.5
46 --- md5_sha1_sum.c 23 May 2007 13:47:31 -0000 1.4
47 +++ md5_sha1_sum.c 27 Mar 2009 20:42:25 -0000 1.5
48 @@ -20,7 +20,7 @@
49 #include <fcntl.h>
50 #include <limits.h>
51 #include <stdio.h>
52 -#include <stdint.h>
53 +#include <inttypes.h>
54 #include <stdlib.h>
55 #include <string.h>
56 #include <unistd.h>