blob: 80a1e9a2c030ad9d50326894bcbae0d75faaa4e9 [file] [log] [blame]
#if defined(_LP64)
typedef unsigned long int uintptr_t;
#elif defined (_WIN64)
typedef unsigned long long int uintptr_t;
#else
typedef unsigned int uintptr_t;
#endif
extern void srand (uintptr_t);
inline void __attribute__ ((gnu_inline))
foo (uintptr_t seed)
{
srand (seed * seed);
}
int
main ()
{
foo (0);
srand ((uintptr_t) (&foo));
return 0;
}