diff options
author | Jakob Kaivo <jkk@ung.org> | 2019-02-09 14:26:35 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2019-02-09 14:26:35 -0500 |
commit | 7b7cca986ed85ecb2dd8d39478088f236a24b9a1 (patch) | |
tree | 94e777147773774da48d2c6baf64d797a182f50d /src/stdlib/drand48.c | |
parent | 3d7bacbaf22b36170371cd89facd0c1cd298b67b (diff) |
merge XOPEN identifiers
Diffstat (limited to 'src/stdlib/drand48.c')
-rw-r--r-- | src/stdlib/drand48.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/stdlib/drand48.c b/src/stdlib/drand48.c new file mode 100644 index 00000000..87ef3359 --- /dev/null +++ b/src/stdlib/drand48.c @@ -0,0 +1,10 @@ +#include <stdlib.h> + +double drand48(void) +{ + return 0.0; +} + +/* +XOPEN(4) +*/ |