diff liboctave/randmtzig.h @ 5828:22e23bee74c8

[project @ 2006-05-23 06:05:14 by jwe]
author jwe
date Tue, 23 May 2006 06:05:14 +0000
parents 2cd0af543e7a
children 4c16f3104aa5
line wrap: on
line diff
--- a/liboctave/randmtzig.h	Mon May 22 06:25:14 2006 +0000
+++ b/liboctave/randmtzig.h	Tue May 23 06:05:14 2006 +0000
@@ -54,26 +54,6 @@
 extern "C" {
 #endif
 
-#ifdef HAVE_INTTYPES_H
-#include <inttypes.h>
-#else
-#if SIZEOF_INT == 4
-typedef unsigned int uint32_t;
-#elif SIZEOF_LONG == 4
-typedef unsigned long uint32_t;
-#else
-#error "No 4 byte integer type found!"
-#endif
-
-#if SIZEOF_LONG == 8
-typedef unsigned long uint64_t;
-#else
-#if SIZEOF_LONG_LONG == 8
-typedef unsigned long long uint64_t;
-#endif
-#endif
-#endif
-
 /* === Mersenne Twister === */
 extern void oct_init_by_int (uint32_t s);
 extern void oct_init_by_array (uint32_t init_key[], int key_length);