summaryrefslogtreecommitdiff
path: root/libc/stdlib/srand48_r.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-08-25 22:04:43 +0000
committerEric Andersen <andersen@codepoet.org>2002-08-25 22:04:43 +0000
commit9a1eb39a6018cdf98de8518a9dd68c67098b6dcb (patch)
tree9064a01a4f45f3c68df901b7182f91debc2da7d7 /libc/stdlib/srand48_r.c
parente320f52df9f172fa3fee4218029a2f4dd4fefbfd (diff)
Kill the HAS_LONG_LONG option. It really did not make a lot of
sense to exclude it, gcc always supports long long, and we never fully excluded long long anyways (off64_t for example). -Erik
Diffstat (limited to 'libc/stdlib/srand48_r.c')
-rw-r--r--libc/stdlib/srand48_r.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/libc/stdlib/srand48_r.c b/libc/stdlib/srand48_r.c
index c7c510864..c0fa38e90 100644
--- a/libc/stdlib/srand48_r.c
+++ b/libc/stdlib/srand48_r.c
@@ -32,13 +32,7 @@ int srand48_r (seedval, buffer)
buffer->__x[1] = seedval & 0xffffl;
buffer->__x[0] = 0x330e;
-#ifdef __UCLIBC_HAS_LONG_LONG__
buffer->__a = 0x5deece66dull;
-#else
- buffer->__a1 = 0x5;
- buffer->__a0 = 0xdeece66d;
-#endif
-
buffer->__c = 0xb;
buffer->__init = 1;