public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-projects commit in portage-utils/tests/atom_explode: test.c
@ 2008-01-17  6:35 Mike Frysinger (vapier)
  0 siblings, 0 replies; 3+ messages in thread
From: Mike Frysinger (vapier) @ 2008-01-17  6:35 UTC (permalink / raw
  To: gentoo-commits

vapier      08/01/17 06:35:09

  Modified:             test.c
  Log:
  use 64bit types for version components and use size_t for array indices which is more natural

Revision  Changes    Path
1.11                 portage-utils/tests/atom_explode/test.c

file : http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/tests/atom_explode/test.c?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/tests/atom_explode/test.c?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/tests/atom_explode/test.c?r1=1.10&r2=1.11

Index: test.c
===================================================================
RCS file: /var/cvsroot/gentoo-projects/portage-utils/tests/atom_explode/test.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- test.c	16 Jan 2008 07:09:08 -0000	1.10
+++ test.c	17 Jan 2008 06:35:08 -0000	1.11
@@ -1,7 +1,7 @@
 /*
  * Copyright 2005-2008 Gentoo Foundation
  * Distributed under the terms of the GNU General Public License v2
- * $Header: /var/cvsroot/gentoo-projects/portage-utils/tests/atom_explode/test.c,v 1.10 2008/01/16 07:09:08 vapier Exp $
+ * $Header: /var/cvsroot/gentoo-projects/portage-utils/tests/atom_explode/test.c,v 1.11 2008/01/17 06:35:08 vapier Exp $
  *
  * Copyright 2005-2008 Ned Ludd        - <solar@gentoo.org>
  * Copyright 2005-2008 Mike Frysinger  - <vapier@gentoo.org>
@@ -11,6 +11,7 @@
 
 #include <stdio.h>
 #include <stdbool.h>
+#include <stdint.h>
 #include <stdlib.h>
 #include <sys/types.h>
 #include <string.h>



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-projects commit in portage-utils/tests/atom_explode: test.c
@ 2009-03-27 20:42 Fabian Groffen (grobian)
  0 siblings, 0 replies; 3+ messages in thread
From: Fabian Groffen (grobian) @ 2009-03-27 20:42 UTC (permalink / raw
  To: gentoo-commits

grobian     09/03/27 20:42:25

  Modified:             test.c
  Log:
  use inttypes.h instead of stdint.h for Solaris 9

Revision  Changes    Path
1.12                 portage-utils/tests/atom_explode/test.c

file : http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/tests/atom_explode/test.c?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/tests/atom_explode/test.c?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/tests/atom_explode/test.c?r1=1.11&r2=1.12

Index: test.c
===================================================================
RCS file: /var/cvsroot/gentoo-projects/portage-utils/tests/atom_explode/test.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- test.c	17 Jan 2008 06:35:08 -0000	1.11
+++ test.c	27 Mar 2009 20:42:25 -0000	1.12
@@ -1,7 +1,7 @@
 /*
  * Copyright 2005-2008 Gentoo Foundation
  * Distributed under the terms of the GNU General Public License v2
- * $Header: /var/cvsroot/gentoo-projects/portage-utils/tests/atom_explode/test.c,v 1.11 2008/01/17 06:35:08 vapier Exp $
+ * $Header: /var/cvsroot/gentoo-projects/portage-utils/tests/atom_explode/test.c,v 1.12 2009/03/27 20:42:25 grobian Exp $
  *
  * Copyright 2005-2008 Ned Ludd        - <solar@gentoo.org>
  * Copyright 2005-2008 Mike Frysinger  - <vapier@gentoo.org>
@@ -11,7 +11,7 @@
 
 #include <stdio.h>
 #include <stdbool.h>
-#include <stdint.h>
+#include <inttypes.h>
 #include <stdlib.h>
 #include <sys/types.h>
 #include <string.h>






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-projects commit in portage-utils/tests/atom_explode: test.c
@ 2009-09-25 14:58 Fabian Groffen (grobian)
  0 siblings, 0 replies; 3+ messages in thread
From: Fabian Groffen (grobian) @ 2009-09-25 14:58 UTC (permalink / raw
  To: gentoo-commits

grobian     09/09/25 14:58:38

  Modified:             test.c
  Log:
  add guards for inttypes.h for Interix

Revision  Changes    Path
1.13                 portage-utils/tests/atom_explode/test.c

file : http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/tests/atom_explode/test.c?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/tests/atom_explode/test.c?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/tests/atom_explode/test.c?r1=1.12&r2=1.13

Index: test.c
===================================================================
RCS file: /var/cvsroot/gentoo-projects/portage-utils/tests/atom_explode/test.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- test.c	27 Mar 2009 20:42:25 -0000	1.12
+++ test.c	25 Sep 2009 14:58:38 -0000	1.13
@@ -1,7 +1,7 @@
 /*
  * Copyright 2005-2008 Gentoo Foundation
  * Distributed under the terms of the GNU General Public License v2
- * $Header: /var/cvsroot/gentoo-projects/portage-utils/tests/atom_explode/test.c,v 1.12 2009/03/27 20:42:25 grobian Exp $
+ * $Header: /var/cvsroot/gentoo-projects/portage-utils/tests/atom_explode/test.c,v 1.13 2009/09/25 14:58:38 grobian Exp $
  *
  * Copyright 2005-2008 Ned Ludd        - <solar@gentoo.org>
  * Copyright 2005-2008 Mike Frysinger  - <vapier@gentoo.org>
@@ -11,7 +11,9 @@
 
 #include <stdio.h>
 #include <stdbool.h>
+#ifndef __INTERIX
 #include <inttypes.h>
+#endif
 #include <stdlib.h>
 #include <sys/types.h>
 #include <string.h>






^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-09-25 14:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-25 14:58 [gentoo-commits] gentoo-projects commit in portage-utils/tests/atom_explode: test.c Fabian Groffen (grobian)
  -- strict thread matches above, loose matches on Subject: below --
2009-03-27 20:42 Fabian Groffen (grobian)
2008-01-17  6:35 Mike Frysinger (vapier)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox