diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2015-03-17 20:54:38 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2015-03-17 21:00:51 +0100 |
commit | f334556476cd9c33d3a9d8df9af0dfae798dc9ae (patch) | |
tree | cb2dd4ee416832ea051e51f4b22a2497d07868d9 /test/stdlib/testarc4random.c | |
parent | 8ee422cffbfd3e2a16265fe6680a8dde2f5e58fe (diff) |
test: Tweak arc4random exclusion
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'test/stdlib/testarc4random.c')
-rw-r--r-- | test/stdlib/testarc4random.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/stdlib/testarc4random.c b/test/stdlib/testarc4random.c index 4d773aa4b..14ff1cc36 100644 --- a/test/stdlib/testarc4random.c +++ b/test/stdlib/testarc4random.c @@ -3,10 +3,8 @@ int main(void) { -#ifdef __UCLIBC_HAS_ARC4RANDOM__ int random_number; random_number = arc4random() % 65536; printf("%d\n", random_number); -#endif return 0; } |