Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(480)

Unified Diff: fusl/src/prng/drand48.c

Issue 1714623002: [fusl] clang-format fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: headers too Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: fusl/src/prng/drand48.c
diff --git a/fusl/src/prng/drand48.c b/fusl/src/prng/drand48.c
index d808353c9872ebd1ae7dedd8dadff14c41b3a8ba..22a1258562997534e6b3387a65b0aca8900b9fcf 100644
--- a/fusl/src/prng/drand48.c
+++ b/fusl/src/prng/drand48.c
@@ -1,19 +1,17 @@
#include <stdlib.h>
#include <inttypes.h>
-uint64_t __rand48_step(unsigned short *xi, unsigned short *lc);
+uint64_t __rand48_step(unsigned short* xi, unsigned short* lc);
extern unsigned short __seed48[7];
-double erand48(unsigned short s[3])
-{
- union {
- uint64_t u;
- double f;
- } x = { 0x3ff0000000000000ULL | __rand48_step(s, __seed48+3)<<4 };
- return x.f - 1.0;
+double erand48(unsigned short s[3]) {
+ union {
+ uint64_t u;
+ double f;
+ } x = {0x3ff0000000000000ULL | __rand48_step(s, __seed48 + 3) << 4};
+ return x.f - 1.0;
}
-double drand48(void)
-{
- return erand48(__seed48);
+double drand48(void) {
+ return erand48(__seed48);
}

Powered by Google App Engine
This is Rietveld 408576698