repo.or.cz
/
hondza-y36pr2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Initial commit.
[hondza-y36pr2.git]
/
nodevrandom
/
nodevrandom_test
blob
d5f1476a0baef2dd37c2629a38576d83e2852b2f
1
#!/bin/mksh
2
3
if [ $# = 0 ] ; then
4
echo " usage:"
5
echo " nodevrandom <prog> [args]"
6
exit
7
fi
8
9
LD_PRELOAD="${LD_PRELOAD} ./libnodevrandom.so"
10
export LD_PRELOAD
11
exec "$@"
12