Release calc version 2.11.0t10

This commit is contained in:
Landon Curt Noll
1999-11-11 05:15:39 -08:00
parent 86c8e6dcf1
commit 96c34adee3
283 changed files with 2380 additions and 3032 deletions

View File

@@ -22,7 +22,7 @@
# PERFORMANCE OF THIS SOFTWARE.
#
# Comments, suggestions, bug fixes and questions about these routines
# are welcome. Send EMail to the address given below.
# are welcome. Send EMail to the address given below.
#
# Happy bit twiddling,
#
@@ -131,7 +131,7 @@ DEBUG= -O
# BSD NO_SHARED=
# SYSV NO_SHARED= -dn
# IRIX NO_SHARED= -non_shared
# disable NO_SHARED=
# disable NO_SHARED=
#
# If in doubt, use NO_SHARED=
#
@@ -153,7 +153,7 @@ RANLIB=:
# a default here just in case you want to build from this directory.
#
# Normally certain files depend on the Makefile. If the Makefile is
# changed, then certain steps should be redone. If MAKE_FILE is
# changed, then certain steps should be redone. If MAKE_FILE is
# set to Makefile, then these files will depend on Makefile. If
# MAKE_FILE is empty, they they wont.
#
@@ -177,11 +177,11 @@ MAKE_FILE= Makefile
#
# By default, custom builtin functions may only be executed if calc
# is given the -C option. This is because custom builtin functions
# may invoke non-standard or non-portable code. One may completely
# may invoke non-standard or non-portable code. One may completely
# disable custom builtin functions by not compiling any of code
#
# ALLOW_CUSTOM= -DCUSTOM # allow custom only if -C is given
# ALLOW_CUSTOM= # disable custom even if -C is given
# ALLOW_CUSTOM= -DCUSTOM # allow custom only if -C is given
# ALLOW_CUSTOM= # disable custom even if -C is given
#
# If in doubt, use ALLOW_CUSTOM= -DCUSTOM
#
@@ -308,14 +308,14 @@ many_random: many_random.o ../libcalc.a
##
#
# File list generation. You can ignore this section.
# File list generation. You can ignore this section.
#
#
# We will form the names of source files as if they were in a
# sub-directory called calc/lib.
#
# NOTE: Due to bogus shells found on one common system we must have
# an non-emoty else clause for every if condition. *sigh*
# an non-emoty else clause for every if condition. *sigh*
#
##
@@ -351,7 +351,7 @@ depend:
${Q}mkdir skel
${Q}mkdir skel/sample
-${Q}for i in ${C_SRC}; do \
${SED} -n '/^#[ ]*include[ ]*"/p' \
${SED} -n '/^#[ ]*include[ ]*"/p' \
"$$i" > "skel/sample/$$i"; \
done
-${Q}for i in ${H_SRC} /dev/null; do \

View File

@@ -31,7 +31,7 @@ many_random
Generate many (100000) sets random bits using the Blum-Blum-Shub
generator that is used by the random() and srandom() builtin functions.
Output is one set per line. Unlike test_random, the seed is not
Output is one set per line. Unlike test_random, the seed is not
printed. There is no leading 0x on numbers and there is no prefix
strings. The only thing printed (normally) is ASCII hex chars and
newlines.

View File

@@ -4,7 +4,7 @@
* usage:
* many_random [[bits] seed_string]
*
* seed_string something for which we can seed (def: default seed)
* seed_string something for which we can seed (def: default seed)
* bits number of bits to generate
*/
@@ -93,7 +93,7 @@ main(int argc, char **argv)
/*
* reseed every so often
*/
*/
for (j=0; j < RESEED; ++j) {
/*

View File

@@ -4,7 +4,7 @@
* usage:
* test_random [[bits] seed_string]
*
* seed_string something for which we can seed (def: default seed)
* seed_string something for which we can seed (def: default seed)
* bits number of bits to generate
*/