diff options
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) +*/ |
