summaryrefslogtreecommitdiff
path: root/src/stdlib/random.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdlib/random.c')
-rw-r--r--src/stdlib/random.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/stdlib/random.c b/src/stdlib/random.c
index 4cf34916..45f712a1 100644
--- a/src/stdlib/random.c
+++ b/src/stdlib/random.c
@@ -1,15 +1,13 @@
-#if 0
-
#include <stdlib.h>
+#include "_stdlib.h"
long random(void)
{
+ SIGNAL_SAFE(0);
+
return 0;
}
/*
XOPEN(400)
*/
-
-
-#endif