From c885bf5cf94a12202f849477a845d728cbd12889 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Sat, 3 Dec 2005 00:34:49 +0000 Subject: More hiding, including __mempcpy --- libc/misc/internals/tempname.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libc/misc/internals') diff --git a/libc/misc/internals/tempname.c b/libc/misc/internals/tempname.c index 360c76879..99a8ac0d8 100644 --- a/libc/misc/internals/tempname.c +++ b/libc/misc/internals/tempname.c @@ -146,7 +146,7 @@ static void brain_damaged_fillrand(unsigned char *buf, unsigned int len) uint32_t high, low, rh; static uint64_t value; gettimeofday(&tv, NULL); - value += ((uint64_t) tv.tv_usec << 16) ^ tv.tv_sec ^ getpid(); + value += ((uint64_t) tv.tv_usec << 16) ^ tv.tv_sec ^ __getpid(); low = value & UINT32_MAX; high = value >> 32; for (i = 0; i < len; ++i) { -- cgit v1.2.3