- update to 2.11.5.8.
- regress target. - take over maintainership. ok provos@
This commit is contained in:
parent
d1ef53dcb3
commit
404ac87a84
@ -1,28 +1,33 @@
|
||||
# $OpenBSD: Makefile,v 1.9 2002/03/21 21:09:18 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.10 2002/08/02 01:50:34 wcobb Exp $
|
||||
#
|
||||
|
||||
COMMENT= "C-style arbitrary precision calculator"
|
||||
|
||||
DISTNAME= calc-2.11.1t3.0
|
||||
DISTNAME= calc-2.11.5.8
|
||||
CATEGORIES= math
|
||||
MASTER_SITES= ftp://ftp.uu.net/pub/calc/ \
|
||||
ftp://reality.sgi.com/chongo/src/calc/
|
||||
NEED_VERSION= 1.515
|
||||
ftp://reality.sgi.com/chongo/src/calc/ \
|
||||
${MASTER_SITE_SOURCEFORGE:=calc/}
|
||||
|
||||
# LGPL
|
||||
PERMIT_PACKAGE_FTP= Yes
|
||||
PERMIT_PACKAGE_CDROM= Yes
|
||||
PERMIT_DISTFILES_FTP= Yes
|
||||
PERMIT_DISTFILES_CDROM= Yes
|
||||
|
||||
HOMEPAGE= http://reality.sgi.com/chongo/calc
|
||||
MAINTAINER= Niels Provos <provos@openbsd.org>
|
||||
MAKE_FLAGS=BINDIR='$${DESTDIR}${PREFIX}/bin' \
|
||||
TOPDIR='$${DESTDIR}${PREFIX}/lib' \
|
||||
HOMEPAGE= http://www.isthe.com/chongo/tech/comp/calc
|
||||
MAINTAINER= Wilbern Cobb <wcobb@openbsd.org>
|
||||
|
||||
MAKE_FLAGS=\
|
||||
BINDIR='$${DESTDIR}${PREFIX}/bin' \
|
||||
LIBDIR='$${DESTDIR}${PREFIX}/lib' \
|
||||
INCDIR='$${DESTDIR}${PREFIX}/include' \
|
||||
MANDIR='$${DESTDIR}${PREFIX}/man/man1' \
|
||||
USE_READLINE=-DUSE_READLINE \
|
||||
CALC_SHAREDIR='$${DESTDIR}${PREFIX}/share/calc' \
|
||||
USE_READLINE='-DUSE_READLINE' \
|
||||
READLINE_LIB='-lreadline -lcurses' \
|
||||
CFLAGS='${CFLAGS} $${CCWARN} $${CCOPT} $${CCMISC}'
|
||||
LCC=${CC} \
|
||||
CFLAGS='${CFLAGS} -DCALC_SRC $${CCWARN}'
|
||||
|
||||
FAKE_FLAGS=${MAKE_FLAGS}
|
||||
|
||||
@ -31,4 +36,6 @@ FAKE_FLAGS=${MAKE_FLAGS}
|
||||
PATCH_LIST= gcc-* patch-*
|
||||
.endif
|
||||
|
||||
REGRESS_TARGET= check
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,6 +1,3 @@
|
||||
MD5 (calc-2.11.0t9.4.1.tar.gz) = 505bd47040d9d30f888aca869876e6d6
|
||||
MD5 (calc-2.11.1t3.0.tar.gz) = 6b5ea47ecd97dbc4098a272994907642
|
||||
RMD160 (calc-2.11.0t9.4.1.tar.gz) = 92bc14c9f1f0ba2ce2b9e4e5ff64619c852c4e9c
|
||||
RMD160 (calc-2.11.1t3.0.tar.gz) = 45dc6ed582ec13fd82d5dd8729dfcf2c2c556a3c
|
||||
SHA1 (calc-2.11.0t9.4.1.tar.gz) = 0eb5150cec745cc159e88b447046999717bf86c4
|
||||
SHA1 (calc-2.11.1t3.0.tar.gz) = 485e5749c80e11e29e7b4ccb52df2867e6facf83
|
||||
MD5 (calc-2.11.5.8.tar.gz) = 9e524d056ba0d44837e4e8b30e8680c7
|
||||
RMD160 (calc-2.11.5.8.tar.gz) = 65261f7f75092650d763f518cd44dc6ae9bb80ca
|
||||
SHA1 (calc-2.11.5.8.tar.gz) = 81bc80f22ba2414fd7012a416ca8028796631db9
|
||||
|
11
math/calc/patches/patch-Makefile
Normal file
11
math/calc/patches/patch-Makefile
Normal file
@ -0,0 +1,11 @@
|
||||
$OpenBSD: patch-Makefile,v 1.1 2002/08/02 01:50:34 wcobb Exp $
|
||||
--- Makefile.orig Wed Mar 13 20:28:28 2002
|
||||
+++ Makefile Wed Jul 17 22:35:28 2002
|
||||
@@ -1612,6 +1612,7 @@ endian_calc.h: endian ${MAKE_FILE}
|
||||
${Q}echo '' >> endian_calc.h
|
||||
${Q}echo '' >> endian_calc.h
|
||||
${Q}echo '/* what byte order are we? */' >> endian_calc.h
|
||||
+ ${Q}echo '#include <sys/types.h>' >> endian_calc.h
|
||||
-${Q}if [ X"${BYTE_ORDER}" = X ]; then \
|
||||
if [ -f ${INCDIR}/endian.h ]; then \
|
||||
echo '#include <endian.h>' >> endian_calc.h; \
|
@ -1,15 +0,0 @@
|
||||
--- alloc.h.orig Mon Nov 8 12:11:28 1999
|
||||
+++ alloc.h Mon Nov 8 12:37:39 1999
|
||||
@@ -13,8 +13,11 @@
|
||||
#include "have_newstr.h"
|
||||
#include "have_string.h"
|
||||
#include "have_memmv.h"
|
||||
+#include "have_stdlib.h"
|
||||
|
||||
-#ifdef HAVE_MALLOC_H
|
||||
+#ifdef HAVE_STDLIB_H
|
||||
+# include <stdlib.h>
|
||||
+#elif defined (HAVE_MALLOC_H)
|
||||
# include <malloc.h>
|
||||
#else
|
||||
#if defined(FORCE_STDC) || (defined(__STDC__) && __STDC__ != 0) || defined(__cplusplus)
|
@ -1,19 +0,0 @@
|
||||
--- hist.c.orig Mon Nov 8 12:23:18 1999
|
||||
+++ hist.c Mon Nov 8 12:40:16 1999
|
||||
@@ -1444,7 +1444,6 @@
|
||||
|
||||
|
||||
#include <readline/readline.h>
|
||||
-#include <readline/history.h>
|
||||
|
||||
|
||||
/*
|
||||
@@ -1506,7 +1505,7 @@
|
||||
using_history();
|
||||
|
||||
/* name of history file */
|
||||
- my_calc_history = tilde_expand("~/.calc_history");
|
||||
+ my_calc_history = (char *)tilde_expand("~/.calc_history");
|
||||
|
||||
/* read previous history */
|
||||
read_history(my_calc_history);
|
14
math/calc/patches/patch-alloc_h
Normal file
14
math/calc/patches/patch-alloc_h
Normal file
@ -0,0 +1,14 @@
|
||||
$OpenBSD: patch-alloc_h,v 1.1 2002/08/02 01:50:34 wcobb Exp $
|
||||
--- alloc.h.orig Wed Jul 17 22:26:58 2002
|
||||
+++ alloc.h Wed Jul 17 22:27:10 2002
|
||||
@@ -44,9 +44,7 @@
|
||||
# include <calc/have_memmv.h>
|
||||
#endif
|
||||
|
||||
-#ifdef HAVE_MALLOC_H
|
||||
-# include <malloc.h>
|
||||
-#else
|
||||
+#ifndef HAVE_MALLOC_H
|
||||
#if defined(FORCE_STDC) || (defined(__STDC__) && __STDC__ != 0) || defined(__cplusplus)
|
||||
extern void *malloc();
|
||||
extern void *realloc();
|
20
math/calc/patches/patch-lib_calc_c
Normal file
20
math/calc/patches/patch-lib_calc_c
Normal file
@ -0,0 +1,20 @@
|
||||
$OpenBSD: patch-lib_calc_c,v 1.1 2002/08/02 01:50:34 wcobb Exp $
|
||||
--- lib_calc.c.orig Wed Jul 17 22:23:36 2002
|
||||
+++ lib_calc.c Wed Jul 17 22:25:22 2002
|
||||
@@ -438,9 +438,14 @@ initenv(void)
|
||||
if (ent == NULL) {
|
||||
/* just assume . is home if all else fails */
|
||||
home = ".";
|
||||
+ } else {
|
||||
+ home = (char *)malloc(strlen(ent->pw_dir)+1);
|
||||
+ if (home == NULL) {
|
||||
+ home = ".";
|
||||
+ } else {
|
||||
+ strcpy(home, ent->pw_dir);
|
||||
+ }
|
||||
}
|
||||
- home = (char *)malloc(strlen(ent->pw_dir)+1);
|
||||
- strcpy(home, ent->pw_dir);
|
||||
}
|
||||
#endif /* Windoz free systems */
|
||||
|
@ -1,5 +1,5 @@
|
||||
Calc is arbitrary precision arithmetic system that uses a C-like
|
||||
language. Calc is useful as a calculator, an algorithm prototyped and
|
||||
language. Calc is useful as a calculator, an algorithm prototyper and
|
||||
as a mathematical research tool. More importantly, calc provides one
|
||||
with a machine independent means of computation. Calc comes with a
|
||||
rich set of builtin mathematical and programmatic functions. A
|
||||
|
@ -1,55 +1,33 @@
|
||||
@comment $OpenBSD: PLIST,v 1.3 2002/04/07 01:54:51 naddy Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.4 2002/08/02 01:50:34 wcobb Exp $
|
||||
bin/calc
|
||||
bin/cscript/4dsphere
|
||||
bin/cscript/fproduct
|
||||
bin/cscript/mersenne
|
||||
bin/cscript/piforever
|
||||
bin/cscript/plus
|
||||
bin/cscript/powerterm
|
||||
bin/cscript/simple
|
||||
include/calc/align32.h
|
||||
include/calc/alloc.h
|
||||
include/calc/args.h
|
||||
bin/cscript/square
|
||||
include/calc/custom
|
||||
include/calc/blkcpy.h
|
||||
include/calc/block.h
|
||||
include/calc/alloc.h
|
||||
include/calc/byteswap.h
|
||||
include/calc/calc.h
|
||||
include/calc/calcerr.h
|
||||
include/calc/cmath.h
|
||||
include/calc/conf.h
|
||||
include/calc/block.h
|
||||
include/calc/config.h
|
||||
include/calc/calc.h
|
||||
include/calc/cmath.h
|
||||
include/calc/math_error.h
|
||||
include/calc/custom.h
|
||||
include/calc/endian_calc.h
|
||||
include/calc/file.h
|
||||
include/calc/fposval.h
|
||||
include/calc/func.h
|
||||
include/calc/hash.h
|
||||
include/calc/have_const.h
|
||||
include/calc/have_fpos.h
|
||||
include/calc/have_getpgid.h
|
||||
include/calc/have_getprid.h
|
||||
include/calc/have_getsid.h
|
||||
include/calc/have_gettime.h
|
||||
include/calc/have_malloc.h
|
||||
include/calc/have_memmv.h
|
||||
include/calc/have_newstr.h
|
||||
include/calc/have_offscl.h
|
||||
include/calc/have_posscl.h
|
||||
include/calc/have_rusage.h
|
||||
include/calc/have_stdlib.h
|
||||
include/calc/have_strdup.h
|
||||
include/calc/have_string.h
|
||||
include/calc/have_times.h
|
||||
include/calc/have_uid_t.h
|
||||
include/calc/have_unistd.h
|
||||
include/calc/have_urandom.h
|
||||
include/calc/have_ustat.h
|
||||
include/calc/hist.h
|
||||
include/calc/jump.h
|
||||
include/calc/label.h
|
||||
include/calc/lib_util.h
|
||||
include/calc/longbits.h
|
||||
include/calc/longlong.h
|
||||
include/calc/math_error.h
|
||||
include/calc/md5.h
|
||||
include/calc/nametype.h
|
||||
include/calc/md5.h
|
||||
include/calc/endian_calc.h
|
||||
include/calc/opcodes.h
|
||||
include/calc/prime.h
|
||||
include/calc/qmath.h
|
||||
@ -57,390 +35,431 @@ include/calc/shs.h
|
||||
include/calc/shs1.h
|
||||
include/calc/string.h
|
||||
include/calc/symbol.h
|
||||
include/calc/terminal.h
|
||||
include/calc/token.h
|
||||
include/calc/value.h
|
||||
include/calc/win32dll.h
|
||||
include/calc/zmath.h
|
||||
include/calc/zrand.h
|
||||
include/calc/zrandom.h
|
||||
lib/calc/README
|
||||
lib/calc/beer.cal
|
||||
lib/calc/bernoulli.cal
|
||||
lib/calc/bigprime.cal
|
||||
lib/calc/bindings
|
||||
lib/calc/chrem.cal
|
||||
lib/calc/custom/argv.cal
|
||||
lib/calc/custom/halflen.cal
|
||||
lib/calc/custom/libcustcalc.a
|
||||
lib/calc/custom/pzasusb8.cal
|
||||
lib/calc/deg.cal
|
||||
lib/calc/ellip.cal
|
||||
lib/calc/hello.cal
|
||||
lib/calc/help/COPYING
|
||||
lib/calc/help/COPYING-LGPL
|
||||
lib/calc/help/abs
|
||||
lib/calc/help/access
|
||||
lib/calc/help/acos
|
||||
lib/calc/help/acosh
|
||||
lib/calc/help/acot
|
||||
lib/calc/help/acoth
|
||||
lib/calc/help/acsc
|
||||
lib/calc/help/acsch
|
||||
lib/calc/help/address
|
||||
lib/calc/help/agd
|
||||
lib/calc/help/append
|
||||
lib/calc/help/appr
|
||||
lib/calc/help/archive
|
||||
lib/calc/help/arg
|
||||
lib/calc/help/argv
|
||||
lib/calc/help/arrow
|
||||
lib/calc/help/asec
|
||||
lib/calc/help/asech
|
||||
lib/calc/help/asin
|
||||
lib/calc/help/asinh
|
||||
lib/calc/help/assign
|
||||
lib/calc/help/assoc
|
||||
lib/calc/help/atan
|
||||
lib/calc/help/atan2
|
||||
lib/calc/help/atanh
|
||||
lib/calc/help/avg
|
||||
lib/calc/help/base
|
||||
lib/calc/help/binding
|
||||
lib/calc/help/bindings
|
||||
lib/calc/help/bit
|
||||
lib/calc/help/blk
|
||||
lib/calc/help/blkcpy
|
||||
lib/calc/help/blkfree
|
||||
lib/calc/help/blocks
|
||||
lib/calc/help/bround
|
||||
lib/calc/help/btrunc
|
||||
lib/calc/help/bug
|
||||
lib/calc/help/bugs
|
||||
lib/calc/help/builtin
|
||||
lib/calc/help/calclevel
|
||||
lib/calc/help/ceil
|
||||
lib/calc/help/cfappr
|
||||
lib/calc/help/cfsim
|
||||
lib/calc/help/change
|
||||
lib/calc/help/changes
|
||||
lib/calc/help/char
|
||||
lib/calc/help/cmdbuf
|
||||
lib/calc/help/cmp
|
||||
lib/calc/help/comb
|
||||
lib/calc/help/command
|
||||
lib/calc/help/config
|
||||
lib/calc/help/conj
|
||||
lib/calc/help/contrib
|
||||
lib/calc/help/cos
|
||||
lib/calc/help/cosh
|
||||
lib/calc/help/cot
|
||||
lib/calc/help/coth
|
||||
lib/calc/help/count
|
||||
lib/calc/help/cp
|
||||
lib/calc/help/credit
|
||||
lib/calc/help/csc
|
||||
lib/calc/help/csch
|
||||
lib/calc/help/cscript
|
||||
lib/calc/help/ctime
|
||||
lib/calc/help/custhelp/argv
|
||||
lib/calc/help/custhelp/devnull
|
||||
lib/calc/help/custhelp/help
|
||||
lib/calc/help/custhelp/pzasusb8
|
||||
lib/calc/help/custhelp/sysinfo
|
||||
lib/calc/help/custom
|
||||
lib/calc/help/custom_cal
|
||||
lib/calc/help/define
|
||||
lib/calc/help/delete
|
||||
lib/calc/help/den
|
||||
lib/calc/help/dereference
|
||||
lib/calc/help/det
|
||||
lib/calc/help/digit
|
||||
lib/calc/help/digits
|
||||
lib/calc/help/dp
|
||||
lib/calc/help/environment
|
||||
lib/calc/help/epsilon
|
||||
lib/calc/help/errcount
|
||||
lib/calc/help/errmax
|
||||
lib/calc/help/errno
|
||||
lib/calc/help/error
|
||||
lib/calc/help/errorcode
|
||||
lib/calc/help/errorcodes
|
||||
lib/calc/help/eval
|
||||
lib/calc/help/exp
|
||||
lib/calc/help/expression
|
||||
lib/calc/help/fact
|
||||
lib/calc/help/factor
|
||||
lib/calc/help/fclose
|
||||
lib/calc/help/fcnt
|
||||
lib/calc/help/feof
|
||||
lib/calc/help/ferror
|
||||
lib/calc/help/fflush
|
||||
lib/calc/help/fgetc
|
||||
lib/calc/help/fgetfield
|
||||
lib/calc/help/fgetline
|
||||
lib/calc/help/fgets
|
||||
lib/calc/help/fgetstr
|
||||
lib/calc/help/fib
|
||||
lib/calc/help/file
|
||||
lib/calc/help/files
|
||||
lib/calc/help/floor
|
||||
lib/calc/help/fopen
|
||||
lib/calc/help/forall
|
||||
lib/calc/help/fprintf
|
||||
lib/calc/help/fputc
|
||||
lib/calc/help/fputs
|
||||
lib/calc/help/fputstr
|
||||
lib/calc/help/frac
|
||||
lib/calc/help/free
|
||||
lib/calc/help/freeglobals
|
||||
lib/calc/help/freeredc
|
||||
lib/calc/help/freestatics
|
||||
lib/calc/help/frem
|
||||
lib/calc/help/freopen
|
||||
lib/calc/help/fscan
|
||||
lib/calc/help/fscanf
|
||||
lib/calc/help/fseek
|
||||
lib/calc/help/fsize
|
||||
lib/calc/help/ftell
|
||||
lib/calc/help/full
|
||||
lib/calc/help/gcd
|
||||
lib/calc/help/gcdrem
|
||||
lib/calc/help/gd
|
||||
lib/calc/help/getenv
|
||||
lib/calc/help/hash
|
||||
lib/calc/help/head
|
||||
lib/calc/help/help
|
||||
lib/calc/help/highbit
|
||||
lib/calc/help/history
|
||||
lib/calc/help/hmean
|
||||
lib/calc/help/hnrmod
|
||||
lib/calc/help/hypot
|
||||
lib/calc/help/ilog
|
||||
lib/calc/help/ilog10
|
||||
lib/calc/help/ilog2
|
||||
lib/calc/help/im
|
||||
lib/calc/help/indices
|
||||
lib/calc/help/inputlevel
|
||||
lib/calc/help/insert
|
||||
lib/calc/help/int
|
||||
lib/calc/help/interrupt
|
||||
lib/calc/help/intro
|
||||
lib/calc/help/inverse
|
||||
lib/calc/help/iroot
|
||||
lib/calc/help/isassoc
|
||||
lib/calc/help/isatty
|
||||
lib/calc/help/isblk
|
||||
lib/calc/help/isconfig
|
||||
lib/calc/help/isdefined
|
||||
lib/calc/help/iserror
|
||||
lib/calc/help/iseven
|
||||
lib/calc/help/isfile
|
||||
lib/calc/help/ishash
|
||||
lib/calc/help/isident
|
||||
lib/calc/help/isint
|
||||
lib/calc/help/islist
|
||||
lib/calc/help/ismat
|
||||
lib/calc/help/ismult
|
||||
lib/calc/help/isnull
|
||||
lib/calc/help/isnum
|
||||
lib/calc/help/isobj
|
||||
lib/calc/help/isobjtype
|
||||
lib/calc/help/isodd
|
||||
lib/calc/help/isprime
|
||||
lib/calc/help/isptr
|
||||
lib/calc/help/isqrt
|
||||
lib/calc/help/isrand
|
||||
lib/calc/help/israndom
|
||||
lib/calc/help/isreal
|
||||
lib/calc/help/isrel
|
||||
lib/calc/help/issimple
|
||||
lib/calc/help/issq
|
||||
lib/calc/help/isstr
|
||||
lib/calc/help/istype
|
||||
lib/calc/help/jacobi
|
||||
lib/calc/help/join
|
||||
lib/calc/help/lcm
|
||||
lib/calc/help/lcmfact
|
||||
lib/calc/help/lfactor
|
||||
lib/calc/help/libcalc
|
||||
lib/calc/help/list
|
||||
lib/calc/help/ln
|
||||
lib/calc/help/lowbit
|
||||
lib/calc/help/ltol
|
||||
lib/calc/help/makelist
|
||||
lib/calc/help/mat
|
||||
lib/calc/help/matdim
|
||||
lib/calc/help/matfill
|
||||
lib/calc/help/matmax
|
||||
lib/calc/help/matmin
|
||||
lib/calc/help/matsum
|
||||
lib/calc/help/mattrace
|
||||
lib/calc/help/mattrans
|
||||
lib/calc/help/max
|
||||
lib/calc/help/md5
|
||||
lib/calc/help/memsize
|
||||
lib/calc/help/meq
|
||||
lib/calc/help/min
|
||||
lib/calc/help/minv
|
||||
lib/calc/help/mmin
|
||||
lib/calc/help/mne
|
||||
lib/calc/help/mod
|
||||
lib/calc/help/modify
|
||||
lib/calc/help/name
|
||||
lib/calc/help/near
|
||||
lib/calc/help/new_custom
|
||||
lib/calc/help/newerror
|
||||
lib/calc/help/nextcand
|
||||
lib/calc/help/nextprime
|
||||
lib/calc/help/norm
|
||||
lib/calc/help/null
|
||||
lib/calc/help/num
|
||||
lib/calc/help/obj
|
||||
lib/calc/help/oldvalue
|
||||
lib/calc/help/operator
|
||||
lib/calc/help/ord
|
||||
lib/calc/help/overview
|
||||
lib/calc/help/param
|
||||
lib/calc/help/perm
|
||||
lib/calc/help/pfact
|
||||
lib/calc/help/pi
|
||||
lib/calc/help/pix
|
||||
lib/calc/help/places
|
||||
lib/calc/help/pmod
|
||||
lib/calc/help/polar
|
||||
lib/calc/help/poly
|
||||
lib/calc/help/pop
|
||||
lib/calc/help/popcnt
|
||||
lib/calc/help/power
|
||||
lib/calc/help/prevcand
|
||||
lib/calc/help/prevprime
|
||||
lib/calc/help/printf
|
||||
lib/calc/help/prompt
|
||||
lib/calc/help/protect
|
||||
lib/calc/help/ptest
|
||||
lib/calc/help/push
|
||||
lib/calc/help/putenv
|
||||
lib/calc/help/quo
|
||||
lib/calc/help/quomod
|
||||
lib/calc/help/rand
|
||||
lib/calc/help/randbit
|
||||
lib/calc/help/random
|
||||
lib/calc/help/randombit
|
||||
lib/calc/help/randperm
|
||||
lib/calc/help/rcin
|
||||
lib/calc/help/rcmul
|
||||
lib/calc/help/rcout
|
||||
lib/calc/help/rcpow
|
||||
lib/calc/help/rcsq
|
||||
lib/calc/help/re
|
||||
lib/calc/help/remove
|
||||
lib/calc/help/resource
|
||||
lib/calc/help/reverse
|
||||
lib/calc/help/rewind
|
||||
lib/calc/help/rm
|
||||
lib/calc/help/root
|
||||
lib/calc/help/round
|
||||
lib/calc/help/rsearch
|
||||
lib/calc/help/runtime
|
||||
lib/calc/help/saveval
|
||||
lib/calc/help/scale
|
||||
lib/calc/help/scan
|
||||
lib/calc/help/scanf
|
||||
lib/calc/help/script
|
||||
lib/calc/help/search
|
||||
lib/calc/help/sec
|
||||
lib/calc/help/sech
|
||||
lib/calc/help/seed
|
||||
lib/calc/help/segment
|
||||
lib/calc/help/select
|
||||
lib/calc/help/sgn
|
||||
lib/calc/help/sha
|
||||
lib/calc/help/sha1
|
||||
lib/calc/help/sin
|
||||
lib/calc/help/sinh
|
||||
lib/calc/help/size
|
||||
lib/calc/help/sizeof
|
||||
lib/calc/help/sort
|
||||
lib/calc/help/sqrt
|
||||
lib/calc/help/srand
|
||||
lib/calc/help/srandom
|
||||
lib/calc/help/ssq
|
||||
lib/calc/help/statement
|
||||
lib/calc/help/str
|
||||
lib/calc/help/strcat
|
||||
lib/calc/help/strerror
|
||||
lib/calc/help/strlen
|
||||
lib/calc/help/strpos
|
||||
lib/calc/help/strprintf
|
||||
lib/calc/help/strscan
|
||||
lib/calc/help/strscanf
|
||||
lib/calc/help/substr
|
||||
lib/calc/help/sum
|
||||
lib/calc/help/swap
|
||||
lib/calc/help/system
|
||||
lib/calc/help/tail
|
||||
lib/calc/help/tan
|
||||
lib/calc/help/tanh
|
||||
lib/calc/help/test
|
||||
lib/calc/help/time
|
||||
lib/calc/help/todo
|
||||
lib/calc/help/trunc
|
||||
lib/calc/help/type
|
||||
lib/calc/help/types
|
||||
lib/calc/help/unexpected
|
||||
lib/calc/help/usage
|
||||
lib/calc/help/variable
|
||||
lib/calc/help/wishlist
|
||||
lib/calc/help/xor
|
||||
lib/calc/libcalc.a
|
||||
lib/calc/lucas.cal
|
||||
lib/calc/lucas_chk.cal
|
||||
lib/calc/lucas_tbl.cal
|
||||
lib/calc/mersenne.cal
|
||||
lib/calc/mfactor.cal
|
||||
lib/calc/mod.cal
|
||||
lib/calc/natnumset.cal
|
||||
lib/calc/pell.cal
|
||||
lib/calc/pi.cal
|
||||
lib/calc/pix.cal
|
||||
lib/calc/pollard.cal
|
||||
lib/calc/poly.cal
|
||||
lib/calc/prompt.cal
|
||||
lib/calc/psqrt.cal
|
||||
lib/calc/qtime.cal
|
||||
lib/calc/quat.cal
|
||||
lib/calc/randbitrun.cal
|
||||
lib/calc/randmprime.cal
|
||||
lib/calc/randombitrun.cal
|
||||
lib/calc/randomrun.cal
|
||||
lib/calc/randrun.cal
|
||||
lib/calc/regress.cal
|
||||
lib/calc/seedrandom.cal
|
||||
lib/calc/solve.cal
|
||||
lib/calc/sumsq.cal
|
||||
lib/calc/surd.cal
|
||||
lib/calc/test1700.cal
|
||||
lib/calc/test2300.cal
|
||||
lib/calc/test2600.cal
|
||||
lib/calc/test2700.cal
|
||||
lib/calc/test3100.cal
|
||||
lib/calc/test3300.cal
|
||||
lib/calc/test3400.cal
|
||||
lib/calc/test3500.cal
|
||||
lib/calc/test4000.cal
|
||||
lib/calc/test4100.cal
|
||||
lib/calc/test4600.cal
|
||||
lib/calc/test5100.cal
|
||||
lib/calc/test5200.cal
|
||||
lib/calc/test8400.cal
|
||||
lib/calc/test8500.cal
|
||||
lib/calc/unitfrac.cal
|
||||
lib/calc/varargs.cal
|
||||
lib/calc/xx_print.cal
|
||||
include/calc/align32.h
|
||||
include/calc/args.h
|
||||
include/calc/calcerr.h
|
||||
include/calc/conf.h
|
||||
include/calc/have_const.h
|
||||
include/calc/fposval.h
|
||||
include/calc/have_fpos_pos.h
|
||||
include/calc/have_fpos.h
|
||||
include/calc/have_malloc.h
|
||||
include/calc/have_memmv.h
|
||||
include/calc/have_newstr.h
|
||||
include/calc/have_offscl.h
|
||||
include/calc/have_posscl.h
|
||||
include/calc/have_stdlib.h
|
||||
include/calc/have_string.h
|
||||
include/calc/have_times.h
|
||||
include/calc/have_uid_t.h
|
||||
include/calc/have_unistd.h
|
||||
include/calc/longbits.h
|
||||
include/calc/longlong.h
|
||||
include/calc/terminal.h
|
||||
include/calc/have_ustat.h
|
||||
include/calc/have_getsid.h
|
||||
include/calc/have_getpgid.h
|
||||
include/calc/have_gettime.h
|
||||
include/calc/have_getprid.h
|
||||
include/calc/have_urandom.h
|
||||
include/calc/have_rusage.h
|
||||
include/calc/have_strdup.h
|
||||
lib/libcalc.a
|
||||
man/man1/calc.1
|
||||
@dirrm lib/calc/help/custhelp
|
||||
@dirrm lib/calc/help
|
||||
@dirrm lib/calc/custom
|
||||
@dirrm lib/calc
|
||||
share/calc/help/overview
|
||||
share/calc/help/intro
|
||||
share/calc/help/environment
|
||||
share/calc/help/help
|
||||
share/calc/help/assoc
|
||||
share/calc/help/command
|
||||
share/calc/help/config
|
||||
share/calc/help/custom
|
||||
share/calc/help/define
|
||||
share/calc/help/COPYING-LGPL
|
||||
share/calc/help/expression
|
||||
share/calc/help/file
|
||||
share/calc/help/history
|
||||
share/calc/help/interrupt
|
||||
share/calc/help/list
|
||||
share/calc/help/mat
|
||||
share/calc/help/operator
|
||||
share/calc/help/statement
|
||||
share/calc/help/types
|
||||
share/calc/help/usage
|
||||
share/calc/help/script
|
||||
share/calc/help/unexpected
|
||||
share/calc/help/variable
|
||||
share/calc/help/archive
|
||||
share/calc/help/contrib
|
||||
share/calc/help/credit
|
||||
share/calc/help/wishlist
|
||||
share/calc/help/todo
|
||||
share/calc/help/builtin
|
||||
share/calc/help/errorcodes
|
||||
share/calc/help/resource
|
||||
share/calc/help/cscript
|
||||
share/calc/help/bindings
|
||||
share/calc/help/custom_cal
|
||||
share/calc/help/libcalc
|
||||
share/calc/help/new_custom
|
||||
share/calc/help/bugs
|
||||
share/calc/help/changes
|
||||
share/calc/help/COPYING
|
||||
share/calc/help/bernoulli
|
||||
share/calc/help/full
|
||||
share/calc/help/abs
|
||||
share/calc/help/access
|
||||
share/calc/help/acos
|
||||
share/calc/help/acosh
|
||||
share/calc/help/acot
|
||||
share/calc/help/acoth
|
||||
share/calc/help/acsc
|
||||
share/calc/help/acsch
|
||||
share/calc/help/address
|
||||
share/calc/help/agd
|
||||
share/calc/help/append
|
||||
share/calc/help/appr
|
||||
share/calc/help/arg
|
||||
share/calc/help/argv
|
||||
share/calc/help/arrow
|
||||
share/calc/help/asec
|
||||
share/calc/help/asech
|
||||
share/calc/help/asin
|
||||
share/calc/help/asinh
|
||||
share/calc/help/assign
|
||||
share/calc/help/atan
|
||||
share/calc/help/atan2
|
||||
share/calc/help/atanh
|
||||
share/calc/help/avg
|
||||
share/calc/help/base
|
||||
share/calc/help/blkcpy
|
||||
share/calc/help/bit
|
||||
share/calc/help/blk
|
||||
share/calc/help/calc_tty
|
||||
share/calc/help/blkfree
|
||||
share/calc/help/blocks
|
||||
share/calc/help/bround
|
||||
share/calc/help/btrunc
|
||||
share/calc/help/freebernoulli
|
||||
share/calc/help/calclevel
|
||||
share/calc/help/catalan
|
||||
share/calc/help/ceil
|
||||
share/calc/help/cfappr
|
||||
share/calc/help/cfsim
|
||||
share/calc/help/char
|
||||
share/calc/help/cmdbuf
|
||||
share/calc/help/cmp
|
||||
share/calc/help/comb
|
||||
share/calc/help/conj
|
||||
share/calc/help/cos
|
||||
share/calc/help/cosh
|
||||
share/calc/help/cot
|
||||
share/calc/help/coth
|
||||
share/calc/help/count
|
||||
share/calc/help/cp
|
||||
share/calc/help/csc
|
||||
share/calc/help/csch
|
||||
share/calc/help/ctime
|
||||
share/calc/help/delete
|
||||
share/calc/help/den
|
||||
share/calc/help/dereference
|
||||
share/calc/help/det
|
||||
share/calc/help/digit
|
||||
share/calc/help/digits
|
||||
share/calc/help/dp
|
||||
share/calc/help/epsilon
|
||||
share/calc/help/errcount
|
||||
share/calc/help/errmax
|
||||
share/calc/help/errno
|
||||
share/calc/help/error
|
||||
share/calc/help/euler
|
||||
share/calc/help/eval
|
||||
share/calc/help/exp
|
||||
share/calc/help/fact
|
||||
share/calc/help/factor
|
||||
share/calc/help/fclose
|
||||
share/calc/help/fcnt
|
||||
share/calc/help/feof
|
||||
share/calc/help/ferror
|
||||
share/calc/help/fflush
|
||||
share/calc/help/fgetc
|
||||
share/calc/help/fgetfield
|
||||
share/calc/help/fgetline
|
||||
share/calc/help/fgets
|
||||
share/calc/help/fgetstr
|
||||
share/calc/help/fib
|
||||
share/calc/help/files
|
||||
share/calc/help/floor
|
||||
share/calc/help/fopen
|
||||
share/calc/help/forall
|
||||
share/calc/help/fprintf
|
||||
share/calc/help/fputc
|
||||
share/calc/help/fputs
|
||||
share/calc/help/fputstr
|
||||
share/calc/help/frac
|
||||
share/calc/help/free
|
||||
share/calc/help/freeeuler
|
||||
share/calc/help/freeglobals
|
||||
share/calc/help/freeredc
|
||||
share/calc/help/freestatics
|
||||
share/calc/help/frem
|
||||
share/calc/help/freopen
|
||||
share/calc/help/fscan
|
||||
share/calc/help/fscanf
|
||||
share/calc/help/fseek
|
||||
share/calc/help/fsize
|
||||
share/calc/help/ftell
|
||||
share/calc/help/gcd
|
||||
share/calc/help/gcdrem
|
||||
share/calc/help/gd
|
||||
share/calc/help/getenv
|
||||
share/calc/help/hash
|
||||
share/calc/help/head
|
||||
share/calc/help/highbit
|
||||
share/calc/help/hmean
|
||||
share/calc/help/hnrmod
|
||||
share/calc/help/hypot
|
||||
share/calc/help/ilog
|
||||
share/calc/help/ilog10
|
||||
share/calc/help/ilog2
|
||||
share/calc/help/im
|
||||
share/calc/help/indices
|
||||
share/calc/help/inputlevel
|
||||
share/calc/help/insert
|
||||
share/calc/help/int
|
||||
share/calc/help/inverse
|
||||
share/calc/help/iroot
|
||||
share/calc/help/isassoc
|
||||
share/calc/help/isatty
|
||||
share/calc/help/isblk
|
||||
share/calc/help/isconfig
|
||||
share/calc/help/isdefined
|
||||
share/calc/help/iserror
|
||||
share/calc/help/iseven
|
||||
share/calc/help/isfile
|
||||
share/calc/help/ishash
|
||||
share/calc/help/isident
|
||||
share/calc/help/isint
|
||||
share/calc/help/islist
|
||||
share/calc/help/ismat
|
||||
share/calc/help/ismult
|
||||
share/calc/help/isnull
|
||||
share/calc/help/isnum
|
||||
share/calc/help/isobj
|
||||
share/calc/help/isobjtype
|
||||
share/calc/help/isodd
|
||||
share/calc/help/isprime
|
||||
share/calc/help/isptr
|
||||
share/calc/help/isqrt
|
||||
share/calc/help/isrand
|
||||
share/calc/help/israndom
|
||||
share/calc/help/isreal
|
||||
share/calc/help/isrel
|
||||
share/calc/help/issimple
|
||||
share/calc/help/issq
|
||||
share/calc/help/isstr
|
||||
share/calc/help/istype
|
||||
share/calc/help/jacobi
|
||||
share/calc/help/join
|
||||
share/calc/help/lcm
|
||||
share/calc/help/lcmfact
|
||||
share/calc/help/lfactor
|
||||
share/calc/help/ln
|
||||
share/calc/help/lowbit
|
||||
share/calc/help/ltol
|
||||
share/calc/help/makelist
|
||||
share/calc/help/matdim
|
||||
share/calc/help/matfill
|
||||
share/calc/help/matmax
|
||||
share/calc/help/matmin
|
||||
share/calc/help/matsum
|
||||
share/calc/help/mattrace
|
||||
share/calc/help/mattrans
|
||||
share/calc/help/max
|
||||
share/calc/help/md5
|
||||
share/calc/help/memsize
|
||||
share/calc/help/meq
|
||||
share/calc/help/min
|
||||
share/calc/help/minv
|
||||
share/calc/help/mmin
|
||||
share/calc/help/mne
|
||||
share/calc/help/mod
|
||||
share/calc/help/modify
|
||||
share/calc/help/name
|
||||
share/calc/help/near
|
||||
share/calc/help/newerror
|
||||
share/calc/help/nextcand
|
||||
share/calc/help/nextprime
|
||||
share/calc/help/norm
|
||||
share/calc/help/null
|
||||
share/calc/help/num
|
||||
share/calc/help/oldvalue
|
||||
share/calc/help/ord
|
||||
share/calc/help/param
|
||||
share/calc/help/perm
|
||||
share/calc/help/pfact
|
||||
share/calc/help/pi
|
||||
share/calc/help/pix
|
||||
share/calc/help/places
|
||||
share/calc/help/pmod
|
||||
share/calc/help/polar
|
||||
share/calc/help/poly
|
||||
share/calc/help/pop
|
||||
share/calc/help/popcnt
|
||||
share/calc/help/power
|
||||
share/calc/help/prevcand
|
||||
share/calc/help/prevprime
|
||||
share/calc/help/printf
|
||||
share/calc/help/prompt
|
||||
share/calc/help/protect
|
||||
share/calc/help/ptest
|
||||
share/calc/help/push
|
||||
share/calc/help/putenv
|
||||
share/calc/help/quo
|
||||
share/calc/help/quomod
|
||||
share/calc/help/rand
|
||||
share/calc/help/randbit
|
||||
share/calc/help/random
|
||||
share/calc/help/randombit
|
||||
share/calc/help/randperm
|
||||
share/calc/help/rcin
|
||||
share/calc/help/rcmul
|
||||
share/calc/help/rcout
|
||||
share/calc/help/rcpow
|
||||
share/calc/help/rcsq
|
||||
share/calc/help/re
|
||||
share/calc/help/remove
|
||||
share/calc/help/reverse
|
||||
share/calc/help/rewind
|
||||
share/calc/help/rm
|
||||
share/calc/help/root
|
||||
share/calc/help/round
|
||||
share/calc/help/rsearch
|
||||
share/calc/help/runtime
|
||||
share/calc/help/saveval
|
||||
share/calc/help/scale
|
||||
share/calc/help/scan
|
||||
share/calc/help/scanf
|
||||
share/calc/help/search
|
||||
share/calc/help/sec
|
||||
share/calc/help/sech
|
||||
share/calc/help/seed
|
||||
share/calc/help/segment
|
||||
share/calc/help/select
|
||||
share/calc/help/sgn
|
||||
share/calc/help/sha
|
||||
share/calc/help/sha1
|
||||
share/calc/help/sin
|
||||
share/calc/help/sinh
|
||||
share/calc/help/size
|
||||
share/calc/help/sizeof
|
||||
share/calc/help/sleep
|
||||
share/calc/help/sort
|
||||
share/calc/help/sqrt
|
||||
share/calc/help/srand
|
||||
share/calc/help/srandom
|
||||
share/calc/help/ssq
|
||||
share/calc/help/str
|
||||
share/calc/help/strcat
|
||||
share/calc/help/strerror
|
||||
share/calc/help/strlen
|
||||
share/calc/help/strpos
|
||||
share/calc/help/strprintf
|
||||
share/calc/help/strscan
|
||||
share/calc/help/strscanf
|
||||
share/calc/help/substr
|
||||
share/calc/help/sum
|
||||
share/calc/help/swap
|
||||
share/calc/help/system
|
||||
share/calc/help/tail
|
||||
share/calc/help/tan
|
||||
share/calc/help/tanh
|
||||
share/calc/help/test
|
||||
share/calc/help/time
|
||||
share/calc/help/trunc
|
||||
share/calc/help/version
|
||||
share/calc/help/xor
|
||||
share/calc/help/binding
|
||||
share/calc/help/bug
|
||||
share/calc/help/change
|
||||
share/calc/help/errorcode
|
||||
share/calc/help/type
|
||||
share/calc/help/obj
|
||||
share/calc/custom
|
||||
share/calc/custom/pzasusb8.cal
|
||||
share/calc/custom/argv.cal
|
||||
share/calc/custom/halflen.cal
|
||||
share/calc/custom/libcustcalc.a
|
||||
share/calc/custhelp/pzasusb8
|
||||
share/calc/custhelp/argv
|
||||
share/calc/custhelp/devnull
|
||||
share/calc/custhelp/help
|
||||
share/calc/custhelp/sysinfo
|
||||
share/calc/ellip.cal
|
||||
share/calc/README
|
||||
share/calc/deg.cal
|
||||
share/calc/bigprime.cal
|
||||
share/calc/lucas_chk.cal
|
||||
share/calc/lucas.cal
|
||||
share/calc/randombitrun.cal
|
||||
share/calc/lucas_tbl.cal
|
||||
share/calc/mersenne.cal
|
||||
share/calc/mod.cal
|
||||
share/calc/pell.cal
|
||||
share/calc/pi.cal
|
||||
share/calc/pix.cal
|
||||
share/calc/pollard.cal
|
||||
share/calc/poly.cal
|
||||
share/calc/psqrt.cal
|
||||
share/calc/quat.cal
|
||||
share/calc/regress.cal
|
||||
share/calc/solve.cal
|
||||
share/calc/sumsq.cal
|
||||
share/calc/surd.cal
|
||||
share/calc/unitfrac.cal
|
||||
share/calc/varargs.cal
|
||||
share/calc/chrem.cal
|
||||
share/calc/mfactor.cal
|
||||
share/calc/bindings
|
||||
share/calc/randmprime.cal
|
||||
share/calc/test1700.cal
|
||||
share/calc/randrun.cal
|
||||
share/calc/randbitrun.cal
|
||||
share/calc/bernoulli.cal
|
||||
share/calc/test2300.cal
|
||||
share/calc/test2600.cal
|
||||
share/calc/test2700.cal
|
||||
share/calc/test3100.cal
|
||||
share/calc/test3300.cal
|
||||
share/calc/test3400.cal
|
||||
share/calc/prompt.cal
|
||||
share/calc/test3500.cal
|
||||
share/calc/seedrandom.cal
|
||||
share/calc/test4000.cal
|
||||
share/calc/test4100.cal
|
||||
share/calc/test4600.cal
|
||||
share/calc/beer.cal
|
||||
share/calc/hello.cal
|
||||
share/calc/test5100.cal
|
||||
share/calc/test5200.cal
|
||||
share/calc/randomrun.cal
|
||||
share/calc/xx_print.cal
|
||||
share/calc/natnumset.cal
|
||||
share/calc/qtime.cal
|
||||
share/calc/test8400.cal
|
||||
share/calc/test8500.cal
|
||||
share/calc/test8600.cal
|
||||
share/calc/chi.cal
|
||||
share/calc/intfile.cal
|
||||
@dirrm share/calc/custhelp
|
||||
@dirrm share/calc/help
|
||||
@dirrm share/calc/custom
|
||||
@dirrm share/calc
|
||||
@dirrm include/calc
|
||||
@dirrm bin/cscript
|
||||
|
Loading…
Reference in New Issue
Block a user