Convert tarball tree to development tree

calc GitHub philosophy

All of the previous commits in the master branch are the consists
of compressed source tarballs.  The 125 git tags represent calc
releases from version 2.10.2t30 (Sat Jul 06 1996 04:17:00 GMT-0700)
to version 2.12.5.6 (Sun May 21 2017 15:03:29 GMT-0700).

At this point master branch will switch from those released tarballs
to the development tree.  While we will make an effort to verify
that commits won't break calc: sometimes we will end up breaking
calc.  You should consider the top of the master branch as potentially
unstable.

When we are ready to release calc, we will tag the commit with the
calc version and submit a release on GitHub.  The GitHub release
will contain the usual RPMs, SRPMs, a release README and a released
source tarball.
This commit is contained in:
Landon Curt Noll
2017-05-22 23:32:12 -07:00
parent 40fc854006
commit 7ae4f4009c
33 changed files with 1103 additions and 8399 deletions

6305
Makefile

File diff suppressed because it is too large Load Diff

View File

@@ -52,6 +52,21 @@ MAKEFILE_REV= $$Revision: 30.88 $$
# calculator by David I. Bell with help/mods from others # calculator by David I. Bell with help/mods from others
# Makefile by Landon Curt Noll # Makefile by Landon Curt Noll
#if 0 /* start of skip for non-Gnu makefiles */
##############################################################################
#-=-=-=-=-=-=-=-=- Identify the target machine, if possible -=-=-=-=-=-=-=-=-#
##############################################################################
# NOTE: You can force a target value by defining target as in:
#
# make ...__optional_arguments_... target=value
# Try uname -s if the target was not already set on the make command line
#
ifeq ($(target),)
target=$(shell uname -s 2>/dev/null)
endif
#endif /* end of skip for non-Gnu makefiles */
############################################################################## ##############################################################################
#-=-=-=-=-=-=-=-=- You may want to change some values below -=-=-=-=-=-=-=-=-# #-=-=-=-=-=-=-=-=- You may want to change some values below -=-=-=-=-=-=-=-=-#
@@ -771,7 +786,23 @@ ALLOW_CUSTOM= -DCUSTOM
# #
# Select CALCPATH= .;./cal;~/.cal;${CALC_SHAREDIR};${CUSTOMCALDIR} for DJGPP. # Select CALCPATH= .;./cal;~/.cal;${CALC_SHAREDIR};${CUSTOMCALDIR} for DJGPP.
# #
#if 0 /* start of skip for non-Gnu makefiles */
ifdef RPM_TOP
ifdef ALLOW_CUSTOM
CALCPATH= .:./cal:~/.cal:${CALC_SHAREDIR}:${CUSTOMCALDIR}
else
CALCPATH= .:./cal:~/.cal:${CALC_SHAREDIR}
endif
else
ifdef ALLOW_CUSTOM
#endif /* end of skip for non-Gnu makefiles */
CALCPATH= .:./cal:~/.cal:${T}${CALC_SHAREDIR}:${T}${CUSTOMCALDIR} CALCPATH= .:./cal:~/.cal:${T}${CALC_SHAREDIR}:${T}${CUSTOMCALDIR}
#if 0 /* start of skip for non-Gnu makefiles */
else
CALCPATH= .:./cal:~/.cal:${T}${CALC_SHAREDIR}
endif
endif
#endif /* end of skip for non-Gnu makefiles */
# If the $CALCRC environment variable is not defined, then the following # If the $CALCRC environment variable is not defined, then the following
# path will be searched for calc resource files. # path will be searched for calc resource files.
@@ -1026,7 +1057,15 @@ EXTRA_LDFLAGS=
# COMMON_CFLAGS are the common ${CC} flags used for all programs, both # COMMON_CFLAGS are the common ${CC} flags used for all programs, both
# intermediate and final calc and calc related programs # intermediate and final calc and calc related programs
# #
#if 0 /* start of skip for non-Gnu makefiles */
ifdef ALLOW_CUSTOM
#endif /* end of skip for non-Gnu makefiles */
COMMON_CFLAGS= -DCALC_SRC ${ALLOW_CUSTOM} ${CCWARN} ${CCMISC} ${EXTRA_CFLAGS} COMMON_CFLAGS= -DCALC_SRC ${ALLOW_CUSTOM} ${CCWARN} ${CCMISC} ${EXTRA_CFLAGS}
#if 0 /* start of skip for non-Gnu makefiles */
else
COMMON_CFLAGS= -DCALC_SRC -UCUSTOM ${CCWARN} ${CCMISC} ${EXTRA_CFLAGS}
endif
#endif /* end of skip for non-Gnu makefiles */
# COMMON_LDFLAGS are the common flags used for linking all programs, both # COMMON_LDFLAGS are the common flags used for linking all programs, both
# intermediate and final calc and calc related programs # intermediate and final calc and calc related programs
@@ -1095,6 +1134,287 @@ COMMON_LDFLAGS= ${EXTRA_LDFLAGS}
# set of lines so that we can consider them for the next release. # # set of lines so that we can consider them for the next release. #
########################################################################## ##########################################################################
#if 0 /* start of skip for non-Gnu makefiles */
################
# Linux target #
################
ifeq ($(target),Linux)
#
BLD_TYPE= calc-dynamic-only
#
CC_SHARE= -fPIC
DEFAULT_LIB_INSTALL_PATH= ${PWD}:/lib:/usr/lib:${LIBDIR}:/usr/local/lib
LD_SHARE= "-Wl,-rpath,${DEFAULT_LIB_INSTALL_PATH}" \
"-Wl,-rpath-link,${DEFAULT_LIB_INSTALL_PATH}"
LIBCALC_SHLIB= -shared "-Wl,-soname,libcalc${LIB_EXT_VERSION}"
ifdef ALLOW_CUSTOM
LIBCUSTCALC_SHLIB= -shared "-Wl,-soname,libcustcalc${LIB_EXT_VERSION}"
else
LIBCUSTCALC_SHLIB=
endif
#
CC_STATIC=
LD_STATIC=
LIBCALC_STATIC=
LIBCUSTCALC_STATIC=
#
CCWARN= -Wall
WNO_IMPLICT= -Wno-implicit
WNO_ERROR_LONG_LONG= -Wno-error=long-long
WNO_LONG_LONG= -Wno-long-long
CCWERR=
CCOPT= ${DEBUG}
CCMISC=
#
LCC= gcc
CC= ${PURIFY} ${LCC} ${CCWERR}
#
endif
##############################
# Apple OS X / Darwin target #
##############################
ifeq ($(target),Darwin)
#
BLD_TYPE= calc-dynamic-only
#
CC_SHARE= -fPIC
DEFAULT_LIB_INSTALL_PATH= ${PWD}:${LIBDIR}:/usr/local/lib
LD_SHARE= ${DARWIN_ARCH}
#SET_INSTALL_NAME= no
SET_INSTALL_NAME= yes
ifeq ($(SET_INSTALL_NAME),yes)
LIBCALC_SHLIB= -single_module -undefined dynamic_lookup -dynamiclib \
-install_name ${LIBDIR}/libcalc${LIB_EXT_VERSION} ${DARWIN_ARCH}
else
LIBCALC_SHLIB= -single_module -undefined dynamic_lookup -dynamiclib \
${DARWIN_ARCH}
endif
ifdef ALLOW_CUSTOM
ifeq ($(SET_INSTALL_NAME),yes)
LIBCUSTCALC_SHLIB= -single_module -undefined dynamic_lookup -dynamiclib \
-install_name ${LIBDIR}/libcustcalc${LIB_EXT_VERSION} ${DARWIN_ARCH}
else
LIBCUSTCALC_SHLIB= -single_module -undefined dynamic_lookup -dynamiclib \
${DARWIN_ARCH}
endif
else
LIBCUSTCALC_SHLIB=
endif
#
CC_STATIC=
LD_STATIC= ${DARWIN_ARCH}
LIBCALC_STATIC=
LIBCUSTCALC_STATIC=
#
CCWARN= -Wall
WNO_IMPLICT= -Wno-implicit
WNO_ERROR_LONG_LONG= -Wno-error=long-long
WNO_LONG_LONG= -Wno-long-long
CCWERR=
CCOPT= ${DEBUG}
CCMISC= ${DARWIN_ARCH}
#
LCC= clang
CC= ${PURIFY} ${LCC} ${CCWERR}
#
# Darwin dynamic shared lib filenames
LIB_EXT:= .dylib
LIB_EXT_VERSION:= .${VERSION}${LIB_EXT}
# LDCONFIG not required on this platform, so we redefine it to an empty string
LDCONFIG:=
# DARWIN_ARCH= -arch i386 -arch ppc # Universal binary
# DARWIN_ARCH= -arch i386 # Intel binary
# DARWIN_ARCH= -arch ppc # PPC binary
# DARWIN_ARCH= -arch x86_64 # native 64-bit binary
DARWIN_ARCH= # native binary
#
# Starting with El Capitan OS X 10.11, root by default could not
# mkdir under system locations, so we now use the /usr/local tree.
#
OPTDIR:= /usr/local
BINDIR:= /${OPTDIR}/bin
LIBDIR:= /${OPTDIR}/lib
CALC_SHAREDIR:= /${OPTDIR}/share
CALC_INCDIR:= /${OPTDIR}/include
SCRIPTDIR:= ${BINDIR}/cscript
endif
##################
# FreeBSD target #
##################
########################################################################
# NOTE: You MUST either use gmake (GNU Make) or you must try your luck #
# with Makefile.simple and custom/Makefile.simple versions. #
# See HOWTO.INSTALL for more information. #
########################################################################
ifeq ($(target),FreeBSD)
#
BLD_TYPE= calc-dynamic-only
#
CC_SHARE= -fPIC
DEFAULT_LIB_INSTALL_PATH= ${PWD}:/lib:/usr/lib:${LIBDIR}:/usr/local/lib
LD_SHARE= "-Wl,-rpath,${DEFAULT_LIB_INSTALL_PATH}" \
"-Wl,-rpath-link,${DEFAULT_LIB_INSTALL_PATH}"
LIBCALC_SHLIB= -shared "-Wl,-soname,libcalc${LIB_EXT_VERSION}"
ifdef ALLOW_CUSTOM
LIBCUSTCALC_SHLIB= -shared "-Wl,-soname,libcustcalc${LIB_EXT_VERSION}"
else
LIBCUSTCALC_SHLIB=
endif
#
CC_STATIC=
LD_STATIC=
LIBCALC_STATIC=
LIBCUSTCALC_STATIC=
#
CCWARN= -Wall
WNO_IMPLICT= -Wno-implicit
WNO_ERROR_LONG_LONG= -Wno-error=long-long
WNO_LONG_LONG= -Wno-long-long
CCWERR=
CCOPT= ${DEBUG}
CCMISC=
#
LCC= gcc
CC= ${PURIFY} ${LCC} ${CCWERR}
#
MAKE= gmake
#
endif
##################
# OpenBSD target #
##################
########################################################################
# NOTE: You MUST either use gmake (GNU Make) or you must try your luck #
# with Makefile.simple and custom/Makefile.simple versions. #
# See HOWTO.INSTALL for more information. #
########################################################################
ifeq ($(target),OpenBSD)
#
BLD_TYPE= calc-dynamic-only
#
CC_SHARE= -fPIC
DEFAULT_LIB_INSTALL_PATH= ${PWD}:/lib:/usr/lib:${LIBDIR}:/usr/local/lib
LD_SHARE= "-Wl,-rpath,${DEFAULT_LIB_INSTALL_PATH}" \
"-Wl,-rpath-link,${DEFAULT_LIB_INSTALL_PATH}"
LIBCALC_SHLIB= -shared "-Wl,-soname,libcalc${LIB_EXT_VERSION}"
ifdef ALLOW_CUSTOM
LIBCUSTCALC_SHLIB= -shared "-Wl,-soname,libcustcalc${LIB_EXT_VERSION}"
else
LIBCUSTCALC_SHLIB=
endif
#
CC_STATIC=
LD_STATIC=
LIBCALC_STATIC=
LIBCUSTCALC_STATIC=
#
CCWARN= -Wall
WNO_IMPLICT= -Wno-implicit
WNO_ERROR_LONG_LONG= -Wno-error=long-long
WNO_LONG_LONG= -Wno-long-long
CCWERR=
CCOPT= ${DEBUG}
CCMISC=
#
LCC= gcc
CC= ${PURIFY} ${LCC} ${CCWERR}
#
MAKE= gmake
#
endif
################
# SunOS target #
################
ifeq ($(target),SunOS)
#
BLD_TYPE= calc-dynamic-only
#
CC_SHARE= -fPIC
DEFAULT_LIB_INSTALL_PATH= ${PWD}:/lib:/usr/lib:${LIBDIR}:/usr/local/lib
LD_SHARE= "-Wl,-rpath,${DEFAULT_LIB_INSTALL_PATH}" \
"-Wl,-rpath-link,${DEFAULT_LIB_INSTALL_PATH}"
LIBCALC_SHLIB= -shared "-Wl,-soname,libcalc${LIB_EXT_VERSION}"
ifdef ALLOW_CUSTOM
LIBCUSTCALC_SHLIB= -shared "-Wl,-soname,libcustcalc${LIB_EXT_VERSION}"
else
LIBCUSTCALC_SHLIB=
endif
#
CC_STATIC=
LIBCALC_STATIC=
LIBCUSTCALC_STATIC=
LD_STATIC=
#
CCWARN= -Wall
WNO_IMPLICT= -Wno-implicit
WNO_ERROR_LONG_LONG= -Wno-error=long-long
WNO_LONG_LONG= -Wno-long-long
CCWERR=
CCOPT= ${DEBUG}
CCMISC=
#
LCC= gcc
CC= ${PURIFY} ${LCC} ${CCWERR}
#
endif
#################
# Cygwin target #
#################
ifeq ($(target),Cygwin)
#
BLD_TYPE= calc-static-only
#
CC_SHARE= -fPIC
DEFAULT_LIB_INSTALL_PATH= ${PWD}:/lib:/usr/lib:${LIBDIR}:/usr/local/lib
LD_SHARE= "-Wl,-rpath,${DEFAULT_LIB_INSTALL_PATH}" \
"-Wl,-rpath-link,${DEFAULT_LIB_INSTALL_PATH}"
LIBCALC_SHLIB= -shared "-Wl,-soname,libcalc${LIB_EXT_VERSION}"
ifdef ALLOW_CUSTOM
LIBCUSTCALC_SHLIB= -shared "-Wl,-soname,libcustcalc${LIB_EXT_VERSION}"
else
LIBCUSTCALC_SHLIB=
endif
#
CC_STATIC=
LIBCALC_STATIC=
LIBCUSTCALC_STATIC=
LD_STATIC=
#
CCWARN= -Wall
WNO_IMPLICT= -Wno-implicit
WNO_ERROR_LONG_LONG= -Wno-error=long-long
WNO_LONG_LONG= -Wno-long-long
CCWERR=
CCOPT= ${DEBUG}
CCMISC=
#
LCC= gcc
CC= ${PURIFY} ${LCC} ${CCWERR}
#
endif
#######################################################
# simple target - values used to form Makefile.simple #
#######################################################
# NOTE: This is not a real host target. The simple target
# exists only to form the Makefile.simple file.
ifeq ($(target),simple)
#endif /* end of skip for non-Gnu makefiles */
# #
BLD_TYPE= calc-static-only BLD_TYPE= calc-static-only
# #
@@ -1134,7 +1454,124 @@ CFLAGS= ${ICFLAGS} ${CCOPT}
ILDFLAGS= ${COMMON_LDFLAGS} ${LD_STATIC} ILDFLAGS= ${COMMON_LDFLAGS} ${LD_STATIC}
LDFLAGS= ${LD_DEBUG} ${ILDFLAGS} ${LIBCALC_STATIC} ${LIBCUSTCALC_STATIC} LDFLAGS= ${LD_DEBUG} ${ILDFLAGS} ${LIBCALC_STATIC} ${LIBCUSTCALC_STATIC}
# #
#if 0 /* start of skip for non-Gnu makefiles */
endif
###################################################
# MINGW32_NT-5.0 target #
###################################################
ifeq ($(target),MINGW32_NT-5.0)
EXT=.exe
TERMCONTROL= -DUSE_WIN32
ifdef ALLOW_CUSTOM
#endif /* end of skip for non-Gnu makefiles */
CALCPATH= .;./cal;~/.cal;${T}${CALC_SHAREDIR};${T}${CUSTOMCALDIR} CALCPATH= .;./cal;~/.cal;${T}${CALC_SHAREDIR};${T}${CUSTOMCALDIR}
#if 0 /* start of skip for non-Gnu makefiles */
else
CALCPATH= .;./cal;~/.cal;${T}${CALC_SHAREDIR}
endif
CALCRC= ${CALC_SHAREDIR}/startup;~/.calcrc;./.calcinit
#
BLD_TYPE= calc-static-only
#
CC_SHARE= -fPIC
DEFAULT_LIB_INSTALL_PATH= ${PWD}:/lib:/usr/lib:${LIBDIR}:/usr/local/lib
LD_SHARE= "-Wl,-rpath,${DEFAULT_LIB_INSTALL_PATH}" \
"-Wl,-rpath-link,${DEFAULT_LIB_INSTALL_PATH}"
LIBCALC_SHLIB= -shared "-Wl,-soname,libcalc${LIB_EXT_VERSION}"
ifdef ALLOW_CUSTOM
LIBCUSTCALC_SHLIB= -shared "-Wl,-soname,libcustcalc${LIB_EXT_VERSION}"
else
LIBCUSTCALC_SHLIB=
endif
#
CC_STATIC= -DSTATIC_ONLY
LIBCALC_STATIC=
LIBCUSTCALC_STATIC=
LD_STATIC=
#
CCWARN= -Wall
WNO_IMPLICT= -Wno-implicit
WNO_ERROR_LONG_LONG= -Wno-error=long-long
WNO_LONG_LONG= -Wno-long-long
CCWERR=
CCOPT= ${DEBUG}
CCMISC= -DNOTCYGWIN
#
LCC= gcc
CC= ${PURIFY} ${LCC} ${CCWERR}
#
endif
###################################################
# default target - when no specific target exists #
###################################################
# NOTE: This is the default generic host target. Used when no other
# host target matches.
ifeq ($(target),)
#
BLD_TYPE= calc-static-only
#
CC_SHARE= -fPIC
DEFAULT_LIB_INSTALL_PATH= ${PWD}:/lib:/usr/lib:${LIBDIR}:/usr/local/lib
LD_SHARE= "-Wl,-rpath,${DEFAULT_LIB_INSTALL_PATH}" \
"-Wl,-rpath-link,${DEFAULT_LIB_INSTALL_PATH}"
LIBCALC_SHLIB= -shared "-Wl,-soname,libcalc${LIB_EXT_VERSION}"
ifdef ALLOW_CUSTOM
LIBCUSTCALC_SHLIB= -shared "-Wl,-soname,libcustcalc${LIB_EXT_VERSION}"
else
LIBCUSTCALC_SHLIB=
endif
#
CC_STATIC=
LIBCALC_STATIC=
LIBCUSTCALC_STATIC=
LD_STATIC=
#
CCWARN= -Wall
WNO_IMPLICT= -Wno-implicit
WNO_ERROR_LONG_LONG= -Wno-error=long-long
WNO_LONG_LONG= -Wno-long-long
CCWERR=
CCOPT= ${DEBUG}
CCMISC=
#
LCC= gcc
CC= ${PURIFY} ${LCC} ${CCWERR}
#
endif
###########################################
# Set the default compile flags for ${CC} #
###########################################
# Required flags to compile C files for calc
#
# ICFLAGS are given to ${CC} for intermediate programs used to help compile calc
# CFLAGS are given to ${CC} for calc programs other than intermediate programs
#
# NOTE: This does not work for: make-XYZ-only and BLD_TYPE != make-XYZ-only
#
ifeq ($(BLD_TYPE),calc-static-only)
ICFLAGS= ${COMMON_CFLAGS} ${CC_STATIC}
else
ICFLAGS= ${COMMON_CFLAGS} ${CC_SHARE}
endif
CFLAGS= ${ICFLAGS} ${CCOPT}
# Required flags to link files for calc
#
# ILDFLAGS for ${CC} in linking intermediate programs used to help compile calc
# LDFLAGS for ${CC} in linking calc programs other than intermediate programs
#
ILDFLAGS= ${COMMON_LDFLAGS}
LDFLAGS= ${LD_DEBUG} ${ILDFLAGS}
#endif /* end of skip for non-Gnu makefiles */
####################################################################### #######################################################################
#-=-=-=-=-=- end of target section - only make rules below -=-=-=-=-=-# #-=-=-=-=-=- end of target section - only make rules below -=-=-=-=-=-#
@@ -1474,16 +1911,40 @@ OBJS= ${LIBOBJS} ${CALCOBJS} ${UTIL_OBJS} ${SAMPLE_OBJ}
# static library build # static library build
# #
#if 0 /* start of skip for non-Gnu makefiles */
ifdef ALLOW_CUSTOM
#endif /* end of skip for non-Gnu makefiles */
CALC_STATIC_LIBS= libcalc.a libcustcalc.a CALC_STATIC_LIBS= libcalc.a libcustcalc.a
#if 0 /* start of skip for non-Gnu makefiles */
else
CALC_STATIC_LIBS= libcalc.a
endif
#endif /* end of skip for non-Gnu makefiles */
# Libraries created and used to build calc # Libraries created and used to build calc
# #
#if 0 /* start of skip for non-Gnu makefiles */
ifdef ALLOW_CUSTOM
#endif /* end of skip for non-Gnu makefiles */
CALC_DYNAMIC_LIBS= libcalc${LIB_EXT_VERSION} libcustcalc${LIB_EXT_VERSION} CALC_DYNAMIC_LIBS= libcalc${LIB_EXT_VERSION} libcustcalc${LIB_EXT_VERSION}
#if 0 /* start of skip for non-Gnu makefiles */
else
CALC_DYNAMIC_LIBS= libcalc${LIB_EXT_VERSION}
endif
#endif /* end of skip for non-Gnu makefiles */
# Symlinks of dynamic shared libraries # Symlinks of dynamic shared libraries
# #
#if 0 /* start of skip for non-Gnu makefiles */
ifdef ALLOW_CUSTOM
#endif /* end of skip for non-Gnu makefiles */
SYM_DYNAMIC_LIBS= libcalc${LIB_EXT} \ SYM_DYNAMIC_LIBS= libcalc${LIB_EXT} \
libcustcalc${LIB_EXT_VERSION} libcustcalc${LIB_EXT} libcustcalc${LIB_EXT_VERSION} libcustcalc${LIB_EXT}
#if 0 /* start of skip for non-Gnu makefiles */
else
SYM_DYNAMIC_LIBS= libcalc${LIB_EXT}
endif
#endif /* end of skip for non-Gnu makefiles */
# list of sample programs that need to be built to satisfy sample rule # list of sample programs that need to be built to satisfy sample rule
# #
@@ -1514,7 +1975,15 @@ STATIC_FIRST_TARGETS= ${LICENSE} .static
# early targets - things needed before the main build phase can begin # early targets - things needed before the main build phase can begin
# #
#if 0 /* start of skip for non-Gnu makefiles */
ifdef ALLOW_CUSTOM
#endif /* end of skip for non-Gnu makefiles */
EARLY_TARGETS= custom/Makefile hsrc .hsrc custom/.all EARLY_TARGETS= custom/Makefile hsrc .hsrc custom/.all
#if 0 /* start of skip for non-Gnu makefiles */
else
EARLY_TARGETS= hsrc .hsrc
endif
#endif /* end of skip for non-Gnu makefiles */
# late targets - things needed after the main build phase is complete # late targets - things needed after the main build phase is complete
# #
@@ -1771,14 +2240,36 @@ conf.h: ${MAKE_FILE}
${Q} echo '' >> conf.h ${Q} echo '' >> conf.h
${Q} echo '/* the location of the help directory */' >> conf.h ${Q} echo '/* the location of the help directory */' >> conf.h
${Q} echo '#if !defined(HELPDIR)' >> conf.h ${Q} echo '#if !defined(HELPDIR)' >> conf.h
#if 0 /* start of skip for non-Gnu makefiles */
ifdef RPM_TOP
${Q} echo '#define HELPDIR "${HELPDIR}"' >> conf.h
else
#endif /* end of skip for non-Gnu makefiles */
${Q} echo '#define HELPDIR "${T}${HELPDIR}"' >> conf.h ${Q} echo '#define HELPDIR "${T}${HELPDIR}"' >> conf.h
#if 0 /* start of skip for non-Gnu makefiles */
endif
#endif /* end of skip for non-Gnu makefiles */
${Q} echo '#endif /* HELPDIR */' >> conf.h ${Q} echo '#endif /* HELPDIR */' >> conf.h
${Q} echo '' >> conf.h ${Q} echo '' >> conf.h
#if 0 /* start of skip for non-Gnu makefiles */
ifdef ALLOW_CUSTOM
#endif /* end of skip for non-Gnu makefiles */
${Q} echo '/* the location of the custom help directory */' >> conf.h ${Q} echo '/* the location of the custom help directory */' >> conf.h
${Q} echo '#if !defined(CUSTOMHELPDIR)' >> conf.h ${Q} echo '#if !defined(CUSTOMHELPDIR)' >> conf.h
#if 0 /* start of skip for non-Gnu makefiles */
ifdef RPM_TOP
${Q} echo '#define CUSTOMHELPDIR "${CUSTOMHELPDIR}"' >> conf.h
else
#endif /* end of skip for non-Gnu makefiles */
${Q} echo '#define CUSTOMHELPDIR "${T}${CUSTOMHELPDIR}"' >> conf.h ${Q} echo '#define CUSTOMHELPDIR "${T}${CUSTOMHELPDIR}"' >> conf.h
#if 0 /* start of skip for non-Gnu makefiles */
endif
#endif /* end of skip for non-Gnu makefiles */
${Q} echo '#endif /* CUSTOMHELPDIR */' >> conf.h ${Q} echo '#endif /* CUSTOMHELPDIR */' >> conf.h
${Q} echo '' >> conf.h ${Q} echo '' >> conf.h
#if 0 /* start of skip for non-Gnu makefiles */
endif
#endif /* end of skip for non-Gnu makefiles */
${Q} echo '/* the default pager to use */' >> conf.h ${Q} echo '/* the default pager to use */' >> conf.h
${Q} echo '#if !defined(DEFAULTCALCPAGER)' >> conf.h ${Q} echo '#if !defined(DEFAULTCALCPAGER)' >> conf.h
${Q} echo '#define DEFAULTCALCPAGER "${CALCPAGER}"' >> conf.h ${Q} echo '#define DEFAULTCALCPAGER "${CALCPAGER}"' >> conf.h
@@ -3110,18 +3601,21 @@ ${CSCRIPT_TARGETS}: cscript/Makefile
${V} echo '=-=-=-=-= Back to the main Makefile for $@ rule =-=-=-=-=' ${V} echo '=-=-=-=-= Back to the main Makefile for $@ rule =-=-=-=-='
${V} echo '=-=-=-=-= ${MAKE_FILE} end of $@ rule =-=-=-=-=' ${V} echo '=-=-=-=-= ${MAKE_FILE} end of $@ rule =-=-=-=-='
#if 0 /* start of skip for non-Gnu makefiles */
ifdef ALLOW_CUSTOM
#endif /* end of skip for non-Gnu makefiles */
custom/.all: custom/Makefile custom/.all: custom/Makefile
${V} echo '=-=-=-=-= ${MAKE_FILE} start of $@ rule =-=-=-=-=' ${V} echo '=-=-=-=-= ${MAKE_FILE} start of $@ rule =-=-=-=-='
${V} echo '=-=-=-=-= Invoking all rule for custom =-=-=-=-=' ${V} echo '=-=-=-=-= Invoking all rule for custom =-=-=-=-='
${RM} -f $@ ${RM} -f $@
cd custom; ${MAKE} -f Makefile.simple ${CUSTOM_PASSDOWN} all cd custom; ${MAKE} -f Makefile ${CUSTOM_PASSDOWN} all
${V} echo '=-=-=-=-= Back to the main Makefile for $@ rule =-=-=-=-=' ${V} echo '=-=-=-=-= Back to the main Makefile for $@ rule =-=-=-=-='
${V} echo '=-=-=-=-= ${MAKE_FILE} end of $@ rule =-=-=-=-=' ${V} echo '=-=-=-=-= ${MAKE_FILE} end of $@ rule =-=-=-=-='
custom/libcustcalc${LIB_EXT_VERSION}: custom/Makefile custom/libcustcalc${LIB_EXT_VERSION}: custom/Makefile
${V} echo '=-=-=-=-= ${MAKE_FILE} start of $@ rule =-=-=-=-=' ${V} echo '=-=-=-=-= ${MAKE_FILE} start of $@ rule =-=-=-=-='
${V} echo '=-=-=-=-= Invoking all rule for custom =-=-=-=-=' ${V} echo '=-=-=-=-= Invoking all rule for custom =-=-=-=-='
cd custom; ${MAKE} -f Makefile.simple ${CUSTOM_PASSDOWN} $@ cd custom; ${MAKE} -f Makefile ${CUSTOM_PASSDOWN} $@
${V} echo '=-=-=-=-= Back to the main Makefile for $@ rule =-=-=-=-=' ${V} echo '=-=-=-=-= Back to the main Makefile for $@ rule =-=-=-=-='
${V} echo '=-=-=-=-= ${MAKE_FILE} end of $@ rule =-=-=-=-=' ${V} echo '=-=-=-=-= ${MAKE_FILE} end of $@ rule =-=-=-=-='
@@ -3132,6 +3626,9 @@ libcustcalc${LIB_EXT_VERSION}: custom/libcustcalc${LIB_EXT_VERSION}
libcustcalc${LIB_EXT}: libcustcalc${LIB_EXT_VERSION} libcustcalc${LIB_EXT}: libcustcalc${LIB_EXT_VERSION}
${Q} ${RM} -f $@ ${Q} ${RM} -f $@
${LN} -s $? $@ ${LN} -s $? $@
#if 0 /* start of skip for non-Gnu makefiles */
endif
#endif /* end of skip for non-Gnu makefiles */
### ###
# #
@@ -3155,8 +3652,14 @@ libcalc.a: ${LIBOBJS} ${MAKE_FILE}
${RANLIB} libcalc.a ${RANLIB} libcalc.a
${CHMOD} 0644 libcalc.a ${CHMOD} 0644 libcalc.a
#if 0 /* start of skip for non-Gnu makefiles */
ifdef ALLOW_CUSTOM
#endif /* end of skip for non-Gnu makefiles */
custom/libcustcalc.a: custom/Makefile custom/libcustcalc.a: custom/Makefile
cd custom; ${MAKE} -f Makefile.simple ${CUSTOM_PASSDOWN} libcustcalc.a cd custom; ${MAKE} -f Makefile ${CUSTOM_PASSDOWN} libcustcalc.a
#if 0 /* start of skip for non-Gnu makefiles */
endif
#endif /* end of skip for non-Gnu makefiles */
sample_rand-static${EXT}: sample_rand.o ${CALC_STATIC_LIBS} ${MAKE_FILE} sample_rand-static${EXT}: sample_rand.o ${CALC_STATIC_LIBS} ${MAKE_FILE}
${CC} ${LDFLAGS} sample_rand.o ${LD_STATIC} \ ${CC} ${LDFLAGS} sample_rand.o ${LD_STATIC} \
@@ -3189,7 +3692,7 @@ depend: custom/Makefile hsrc
${Q} cd cscript; ${MAKE} -f Makefile ${CSCRIPT_PASSDOWN} depend ${Q} cd cscript; ${MAKE} -f Makefile ${CSCRIPT_PASSDOWN} depend
${V} echo '=-=-=-=-= Back to the main Makefile for $@ rule =-=-=-=-=' ${V} echo '=-=-=-=-= Back to the main Makefile for $@ rule =-=-=-=-='
${V} echo '=-=-=-=-= Invoking depend rule for custom =-=-=-=-=' ${V} echo '=-=-=-=-= Invoking depend rule for custom =-=-=-=-='
${Q} cd custom; ${MAKE} -f Makefile.simple ${CUSTOM_PASSDOWN} depend ${Q} cd custom; ${MAKE} -f Makefile ${CUSTOM_PASSDOWN} depend
${V} echo '=-=-=-=-= Back to the main Makefile for $@ rule =-=-=-=-=' ${V} echo '=-=-=-=-= Back to the main Makefile for $@ rule =-=-=-=-='
${Q} echo forming skel ${Q} echo forming skel
${Q} ${RM} -rf skel ${Q} ${RM} -rf skel
@@ -3305,7 +3808,7 @@ distlist: custom/Makefile ${DISTLIST}
done; \ done; \
(cd help; ${MAKE} -f Makefile ${HELP_PASSDOWN} $@); \ (cd help; ${MAKE} -f Makefile ${HELP_PASSDOWN} $@); \
(cd cal; ${MAKE} -f Makefile ${CAL_PASSDOWN} $@); \ (cd cal; ${MAKE} -f Makefile ${CAL_PASSDOWN} $@); \
(cd custom; ${MAKE} -f Makefile.simple ${CUSTOM_PASSDOWN} $@); \ (cd custom; ${MAKE} -f Makefile ${CUSTOM_PASSDOWN} $@); \
(cd cscript; ${MAKE} -f Makefile ${CSCRIPT_PASSDOWN} $@) \ (cd cscript; ${MAKE} -f Makefile ${CSCRIPT_PASSDOWN} $@) \
) | LANG=C ${SORT} ) | LANG=C ${SORT}
@@ -3314,7 +3817,7 @@ distdir: custom/Makefile
echo win32; \ echo win32; \
(cd help; ${MAKE} -f Makefile ${HELP_PASSDOWN} $@); \ (cd help; ${MAKE} -f Makefile ${HELP_PASSDOWN} $@); \
(cd cal; ${MAKE} -f Makefile ${CAL_PASSDOWN} $@); \ (cd cal; ${MAKE} -f Makefile ${CAL_PASSDOWN} $@); \
(cd custom; ${MAKE} -f Makefile.simple ${CUSTOM_PASSDOWN} $@); \ (cd custom; ${MAKE} -f Makefile ${CUSTOM_PASSDOWN} $@); \
(cd cscript; ${MAKE} -f Makefile ${CSCRIPT_PASSDOWN} $@) \ (cd cscript; ${MAKE} -f Makefile ${CSCRIPT_PASSDOWN} $@) \
) | LANG=C ${SORT} ) | LANG=C ${SORT}
@@ -3326,7 +3829,7 @@ calcliblist: custom/Makefile
done; \ done; \
(cd help; ${MAKE} -f Makefile ${HELP_PASSDOWN} $@); \ (cd help; ${MAKE} -f Makefile ${HELP_PASSDOWN} $@); \
(cd cal; ${MAKE} -f Makefile ${CAL_PASSDOWN} $@); \ (cd cal; ${MAKE} -f Makefile ${CAL_PASSDOWN} $@); \
(cd custom; ${MAKE} -f Makefile.simple ${CUSTOM_PASSDOWN} $@); \ (cd custom; ${MAKE} -f Makefile ${CUSTOM_PASSDOWN} $@); \
(cd cscript; ${MAKE} -f Makefile ${CSCRIPT_PASSDOWN} $@) \ (cd cscript; ${MAKE} -f Makefile ${CSCRIPT_PASSDOWN} $@) \
) | LANG=C ${SORT} ) | LANG=C ${SORT}
@@ -3334,6 +3837,32 @@ calcliblistfmt:
${Q} ${MAKE} -f Makefile calcliblist | \ ${Q} ${MAKE} -f Makefile calcliblist | \
${FMT} -64 | ${SED} -e 's/^/ /' ${FMT} -64 | ${SED} -e 's/^/ /'
#if 0 /* start of skip for non-Gnu makefiles */
custom/Makefile: ${MAKE_FILE} custom/Makefile.head custom/Makefile.tail
${V} echo '=-=-=-=-= ${MAKE_FILE} start of $@ rule =-=-=-=-='
${Q} ${RM} -f $@
${Q} ${CAT} custom/Makefile.head > $@
${Q} ${SED} -n -e \
"/^# start of host target cut/,/^# end of host target cut/p" \
${MAKE_FILE} >> $@
${Q} ${CAT} custom/Makefile.tail >> $@
${V} echo '=-=-=-=-= ${MAKE_FILE} end of $@ rule =-=-=-=-='
Makefile.simple: ${MAKE_FILE} custom/Makefile.simple
${V} echo '=-=-=-=-= ${MAKE_FILE} start of $@ rule =-=-=-=-='
${Q} ${RM} -f $@
${Q} ${AWK} '/^#if 0/{skp=1} {if(!skp){print $$0}} /^#endif/{skp=0}' \
${MAKE_FILE} | \
${SED} -e 's/cd custom; $${MAKE} -f Makefile/&.simple/g' > $@
${Q} echo >> $@
${Q} echo 'Makefile.simple:' >> $@
${Q} echo ' $${Q} if [ ! -f Makefile.simple ]; then '"\\" >> $@
${Q} echo ' $${CP} -f $${MAKE_FILE} $$@; fi' >> $@
${V} echo '=-=-=-=-= ${MAKE_FILE} end of $@ rule =-=-=-=-='
custom/Makefile.simple: custom/Makefile
${Q} cd custom; ${MAKE} -f Makefile ${CUSTOM_PASSDOWN} Makefile.simple
#endif /* end of skip for non-Gnu makefiles */
### ###
# #
@@ -3736,7 +4265,7 @@ clean: custom/Makefile
cd cal; ${MAKE} -f Makefile ${CAL_PASSDOWN} clean cd cal; ${MAKE} -f Makefile ${CAL_PASSDOWN} clean
${Q} echo '=-=-=-=-= Back to the main Makefile for $@ rule =-=-=-=-=' ${Q} echo '=-=-=-=-= Back to the main Makefile for $@ rule =-=-=-=-='
${V} echo '=-=-=-=-= Invoking $@ rule for custom =-=-=-=-=' ${V} echo '=-=-=-=-= Invoking $@ rule for custom =-=-=-=-='
cd custom; ${MAKE} -f Makefile.simple ${CUSTOM_PASSDOWN} clean cd custom; ${MAKE} -f Makefile ${CUSTOM_PASSDOWN} clean
${V} echo '=-=-=-=-= Back to the main Makefile for $@ rule =-=-=-=-=' ${V} echo '=-=-=-=-= Back to the main Makefile for $@ rule =-=-=-=-='
${V} echo '=-=-=-=-= Invoking $@ rule for cscript =-=-=-=-=' ${V} echo '=-=-=-=-= Invoking $@ rule for cscript =-=-=-=-='
cd cscript; ${MAKE} -f Makefile ${CSCRIPT_PASSDOWN} clean cd cscript; ${MAKE} -f Makefile ${CSCRIPT_PASSDOWN} clean
@@ -3789,6 +4318,11 @@ clobber: custom/Makefile clean
${RM} -rf win32 build ${RM} -rf win32 build
${RM} -f no_implicit.arg ${RM} -f no_implicit.arg
${RM} -f no_implicit.c no_implicit.o no_implicit${EXT} ${RM} -f no_implicit.c no_implicit.o no_implicit${EXT}
#if 0 /* start of skip for non-Gnu makefiles */
${RM} -f Makefile.simple
${RM} -f custom/Makefile
-${MAKE} -f ${MAKE_FILE} custom/Makefile
#endif /* end of skip for non-Gnu makefiles */
${RM} -f .static .dynamic calc-dynamic-only calc-static-only ${RM} -f .static .dynamic calc-dynamic-only calc-static-only
-${Q} if [ -e .DS_Store ]; then \ -${Q} if [ -e .DS_Store ]; then \
echo ${RM} -rf .DS_Store; \ echo ${RM} -rf .DS_Store; \
@@ -3858,6 +4392,9 @@ install: custom/Makefile ${LIB_H_SRC} ${BUILD_H_SRC} calc.1 all
else \ else \
${TRUE}; \ ${TRUE}; \
fi fi
#if 0 /* start of skip for non-Gnu makefiles */
ifdef ALLOW_CUSTOM
#endif /* end of skip for non-Gnu makefiles */
-${Q} if [ ! -d ${T}${CUSTOMCALDIR} ]; then \ -${Q} if [ ! -d ${T}${CUSTOMCALDIR} ]; then \
echo ${MKDIR} -p ${T}${CUSTOMCALDIR}; \ echo ${MKDIR} -p ${T}${CUSTOMCALDIR}; \
${MKDIR} -p ${T}${CUSTOMCALDIR}; \ ${MKDIR} -p ${T}${CUSTOMCALDIR}; \
@@ -3882,6 +4419,9 @@ install: custom/Makefile ${LIB_H_SRC} ${BUILD_H_SRC} calc.1 all
else \ else \
${TRUE}; \ ${TRUE}; \
fi fi
#if 0 /* start of skip for non-Gnu makefiles */
endif
#endif /* end of skip for non-Gnu makefiles */
-${Q} if [ ! -d ${T}${SCRIPTDIR} ]; then \ -${Q} if [ ! -d ${T}${SCRIPTDIR} ]; then \
echo ${MKDIR} -p ${T}${SCRIPTDIR}; \ echo ${MKDIR} -p ${T}${SCRIPTDIR}; \
${MKDIR} -p ${T}${SCRIPTDIR}; \ ${MKDIR} -p ${T}${SCRIPTDIR}; \
@@ -3943,9 +4483,15 @@ install: custom/Makefile ${LIB_H_SRC} ${BUILD_H_SRC} calc.1 all
${V} echo '=-=-=-=-= Invoking $@ rule for cal =-=-=-=-=' ${V} echo '=-=-=-=-= Invoking $@ rule for cal =-=-=-=-='
${Q} cd cal; ${MAKE} -f Makefile ${CAL_PASSDOWN} install ${Q} cd cal; ${MAKE} -f Makefile ${CAL_PASSDOWN} install
${V} echo '=-=-=-=-= Back to the main Makefile for $@ rule =-=-=-=-=' ${V} echo '=-=-=-=-= Back to the main Makefile for $@ rule =-=-=-=-='
#if 0 /* start of skip for non-Gnu makefiles */
ifdef ALLOW_CUSTOM
#endif /* end of skip for non-Gnu makefiles */
${V} echo '=-=-=-=-= Invoking $@ rule for custom =-=-=-=-=' ${V} echo '=-=-=-=-= Invoking $@ rule for custom =-=-=-=-='
${Q} cd custom; ${MAKE} -f Makefile.simple ${CUSTOM_PASSDOWN} install ${Q} cd custom; ${MAKE} -f Makefile ${CUSTOM_PASSDOWN} install
${V} echo '=-=-=-=-= Back to the main Makefile for $@ rule =-=-=-=-=' ${V} echo '=-=-=-=-= Back to the main Makefile for $@ rule =-=-=-=-='
#if 0 /* start of skip for non-Gnu makefiles */
endif
#endif /* end of skip for non-Gnu makefiles */
${V} echo '=-=-=-=-= Invoking $@ rule for cscript =-=-=-=-=' ${V} echo '=-=-=-=-= Invoking $@ rule for cscript =-=-=-=-='
${Q} cd cscript; ${MAKE} -f Makefile ${CSCRIPT_PASSDOWN} install ${Q} cd cscript; ${MAKE} -f Makefile ${CSCRIPT_PASSDOWN} install
${V} echo '=-=-=-=-= Back to the main Makefile for $@ rule =-=-=-=-=' ${V} echo '=-=-=-=-= Back to the main Makefile for $@ rule =-=-=-=-='
@@ -4169,7 +4715,7 @@ uninstall: custom/Makefile
${Q} cd cscript; ${MAKE} -f Makefile ${CSCRIPT_PASSDOWN} uninstall ${Q} cd cscript; ${MAKE} -f Makefile ${CSCRIPT_PASSDOWN} uninstall
${V} echo '=-=-=-=-= Back to the main Makefile for $@ rule =-=-=-=-=' ${V} echo '=-=-=-=-= Back to the main Makefile for $@ rule =-=-=-=-='
${V} echo '=-=-=-=-= Invoking $@ rule for custom =-=-=-=-=' ${V} echo '=-=-=-=-= Invoking $@ rule for custom =-=-=-=-='
${Q} cd custom; ${MAKE} -f Makefile.simple ${CUSTOM_PASSDOWN} uninstall ${Q} cd custom; ${MAKE} -f Makefile ${CUSTOM_PASSDOWN} uninstall
${V} echo '=-=-=-=-= Back to the main Makefile for $@ rule =-=-=-=-=' ${V} echo '=-=-=-=-= Back to the main Makefile for $@ rule =-=-=-=-='
${V} echo '=-=-=-=-= Invoking $@ rule for cal =-=-=-=-=' ${V} echo '=-=-=-=-= Invoking $@ rule for cal =-=-=-=-='
${Q} cd cal; ${MAKE} -f Makefile ${CAL_PASSDOWN} uninstall ${Q} cd cal; ${MAKE} -f Makefile ${CAL_PASSDOWN} uninstall
@@ -5576,7 +6122,3 @@ zrandom.o: value.h
zrandom.o: zmath.h zrandom.o: zmath.h
zrandom.o: zrandom.c zrandom.o: zrandom.c
zrandom.o: zrandom.h zrandom.o: zrandom.h
Makefile.simple:
${Q} if [ ! -f Makefile.simple ]; then \
${CP} -f ${MAKE_FILE} $@; fi

File diff suppressed because it is too large Load Diff

View File

@@ -1,15 +0,0 @@
/*
* DO NOT EDIT -- generated by the Makefile
*/
#if !defined(__MUST_ALIGN32_H__)
#define __MUST_ALIGN32_H__
/* must we always align 32 bit accesses? */
/* forced to align 32 bit values */
#define MUST_ALIGN32
#endif /* !__MUST_ALIGN32_H__ */

View File

@@ -1,18 +0,0 @@
/*
* DO NOT EDIT -- generated by the Makefile
*/
#if !defined(__ARGS_H__)
#define __ARGS_H__
/* what type of variable args do we have? */
#define STDARG /* use <stdarg.h> */
#include <stdarg.h>
/* should we use vsprintf() and vsnprintf()? */
#define HAVE_VSPRINTF /* yes */
#endif /* !__ARGS_H__ */

View File

@@ -1,451 +0,0 @@
/*
* DO NOT EDIT
*
* generated by calcerr.tbl via Makefile
*/
#include <stdio.h>
#include "calcerr.h"
#include "have_const.h"
/*
* names of calc error values
*/
CONST char *error_table[E__COUNT+2] = {
"No error",
"Division by zero",
"Indeterminate (0/0)",
"Bad arguments for +",
"Bad arguments for binary -",
"Bad arguments for *",
"Bad arguments for /",
"Bad argument for unary -",
"Bad argument for squaring",
"Bad argument for inverse",
"Bad argument for ++",
"Bad argument for --",
"Bad argument for int",
"Bad argument for frac",
"Bad argument for conj",
"Bad first argument for appr",
"Bad second argument for appr",
"Bad third argument for appr",
"Bad first argument for round",
"Bad second argument for round",
"Bad third argument for round",
"Bad first argument for bround",
"Bad second argument for bround",
"Bad third argument for bround",
"Bad first argument for sqrt",
"Bad second argument for sqrt",
"Bad third argument for sqrt",
"Bad first argument for root",
"Bad second argument for root",
"Bad third argument for root",
"Bad argument for norm",
"Bad first argument for << or >>",
"Bad second argument for << or >>",
"Bad first argument for scale",
"Bad second argument for scale",
"Bad first argument for ^",
"Bad second argument for ^",
"Bad first argument for power",
"Bad second argument for power",
"Bad third argument for power",
"Bad first argument for quo or //",
"Bad second argument for quo or //",
"Bad third argument for quo",
"Bad first argument for mod or %",
"Bad second argument for mod or %",
"Bad third argument for mod",
"Bad argument for sgn",
"Bad first argument for abs",
"Bad second argument for abs",
"Scan error in argument for eval",
"Non-simple type for str",
"Non-real epsilon for exp",
"Bad first argument for exp",
"Non-file first argument for fputc",
"Bad second argument for fputc",
"File not open for writing for fputc",
"Non-file first argument for fgetc",
"File not open for reading for fgetc",
"Non-string arguments for fopen",
"Unrecognized mode for fopen",
"Non-file first argument for freopen",
"Non-string or unrecognized mode for freopen",
"Non-string third argument for freopen",
"Non-file argument for fclose",
"Non-file argument for fflush",
"Non-file first argument for fputs",
"Non-string argument after first for fputs",
"File not open for writing for fputs",
"Non-file argument for fgets",
"File not open for reading for fgets",
"Non-file first argument for fputstr",
"Non-string argument after first for fputstr",
"File not open for writing for fputstr",
"Non-file first argument for fgetstr",
"File not open for reading for fgetstr",
"Non-file argument for fgetline",
"File not open for reading for fgetline",
"Non-file argument for fgetfield",
"File not open for reading for fgetfield",
"Non-file argument for rewind",
"Non-integer argument for files",
"Non-string fmt argument for fprint",
"Stdout not open for writing to ???",
"Non-file first argument for fprintf",
"Non-string second (fmt) argument for fprintf",
"File not open for writing for fprintf",
"Non-string first (fmt) argument for strprintf",
"Error in attempting strprintf ???",
"Non-file first argument for fscan",
"File not open for reading for fscan",
"Non-string first argument for strscan",
"Non-file first argument for fscanf",
"Non-string second (fmt) argument for fscanf",
"Non-lvalue argument after second for fscanf",
"File not open for reading or other error for fscanf",
"Non-string first argument for strscanf",
"Non-string second (fmt) argument for strscanf",
"Non-lvalue argument after second for strscanf",
"Some error in attempting strscanf ???",
"Non-string first (fmt) argument for scanf",
"Non-lvalue argument after first for scanf",
"Some error in attempting scanf ???",
"Non-file argument for ftell",
"File not open or other error for ftell",
"Non-file first argument for fseek",
"Non-integer or negative second argument for fseek",
"File not open or other error for fseek",
"Non-file argument for fsize",
"File not open or other error for fsize",
"Non-file argument for feof",
"File not open or other error for feof",
"Non-file argument for ferror",
"File not open or other error for ferror",
"Non-file argument for ungetc",
"File not open for reading for ungetc",
"Bad second argument or other error for ungetc",
"Exponent too big in scanning",
"E_ISATTY1 is no longer used",
"E_ISATTY2 is no longer used",
"Non-string first argument for access",
"Bad second argument for access",
"Bad first argument for search",
"Bad second argument for search",
"Bad third argument for search",
"Bad fourth argument for search",
"Cannot find fsize or fpos for search",
"File not readable for search",
"Bad first argument for rsearch",
"Bad second argument for rsearch",
"Bad third argument for rsearch",
"Bad fourth argument for rsearch",
"Cannot find fsize or fpos for rsearch",
"File not readable for rsearch",
"Too many open files",
"Attempt to rewind a file that is not open",
"Bad argument type for strerror",
"Index out of range for strerror",
"Bad epsilon for cos",
"Bad first argument for cos",
"Bad epsilon for sin",
"Bad first argument for sin",
"Non-string argument for eval",
"Bad epsilon for arg",
"Bad first argument for arg",
"Non-real argument for polar",
"Bad epsilon for polar",
"Non-integral argument for fcnt",
"Non-variable first argument for matfill",
"Non-matrix first argument-value for matfill",
"Non-matrix argument for matdim",
"Non-matrix argument for matsum",
"E_ISIDENT is no longer used",
"Non-matrix argument for mattrans",
"Non-two-dimensional matrix for mattrans",
"Non-matrix argument for det",
"Matrix for det not of dimension 2",
"Non-square matrix for det",
"Non-matrix first argument for matmin",
"Non-positive-integer second argument for matmin",
"Second argument for matmin exceeds dimension",
"Non-matrix first argument for matmin",
"Second argument for matmax not positive integer",
"Second argument for matmax exceeds dimension",
"Non-matrix argument for cp",
"Non-one-dimensional matrix for cp",
"Matrix size not 3 for cp",
"Non-matrix argument for dp",
"Non-one-dimensional matrix for dp",
"Different-size matrices for dp",
"Non-string argument for strlen",
"Non-string argument for strcat",
"Non-string first argument for strcat",
"Non-non-negative integer second argument for strcat",
"Bad argument for char",
"Non-string argument for ord",
"Non-list-variable first argument for insert",
"Non-integral second argument for insert",
"Non-list-variable first argument for push",
"Non-list-variable first argument for append",
"Non-list-variable first argument for delete",
"Non-integral second argument for delete",
"Non-list-variable argument for pop",
"Non-list-variable argument for remove",
"Bad epsilon argument for ln",
"Non-numeric first argument for ln",
"Non-integer argument for error",
"Argument outside range for error",
"Attempt to eval at maximum input depth",
"Unable to open string for reading",
"First argument for rm is not a non-empty string",
"Unable to remove a file",
"Operation allowed because calc mode disallows read operations",
"Operation allowed because calc mode disallows write operations",
"Operation allowed because calc mode disallows exec operations",
"Unordered arguments for min",
"Unordered arguments for max",
"Unordered items for minimum of list",
"Unordered items for maximum of list",
"Size undefined for argument type",
"Calc must be run with a -C argument to use custom function",
"Calc was built with custom functions disabled",
"Custom function unknown, try: show custom",
"Non-integral length for block",
"Negative or too-large length for block",
"Non-integral chunksize for block",
"Negative or too-large chunksize for block",
"Named block does not exist for blkfree",
"Non-integral id specification for blkfree",
"Block with specified id does not exist",
"Block already freed",
"No-realloc protection prevents blkfree",
"Non-integer argument for blocks",
"Non-allocated index number for blocks",
"Non-integer or negative source index for copy",
"Source index too large for copy",
"E_COPY3 is no longer used",
"Non-integer or negative number for copy",
"Number too large for copy",
"Non-integer or negative destination index for copy",
"Destination index too large for copy",
"Freed block source for copy",
"Unsuitable source type for copy",
"Freed block destinction for copy",
"Unsuitable destination type for copy",
"Incompatible source and destination for copy",
"No-copy-from source variable",
"No-copy-to destination variable",
"No-copy-from source named block",
"No-copy-to destination named block",
"No-relocate destination for copy",
"File not open for copy",
"fseek or fsize failure for copy",
"fwrite error for copy",
"fread error for copy",
"Non-variable first argument for protect",
"Bad second argument for protect",
"Bad third argument for protect",
"No-copy-to destination for matfill",
"No-assign-from source for matfill",
"Non-matrix argument for mattrace",
"Non-two-dimensional argument for mattrace",
"Non-square argument for mattrace",
"Bad epsilon for tan",
"Bad argument for tan",
"Bad epsilon for cot",
"Bad argument for cot",
"Bad epsilon for sec",
"Bad argument for sec",
"Bad epsilon for csc",
"Bad argument for csc",
"Bad epsilon for sinh",
"Bad argument for sinh",
"Bad epsilon for cosh",
"Bad argument for cosh",
"Bad epsilon for tanh",
"Bad argument for tanh",
"Bad epsilon for coth",
"Bad argument for coth",
"Bad epsilon for sech",
"Bad argument for sech",
"Bad epsilon for csch",
"Bad argument for csch",
"Bad epsilon for asin",
"Bad argument for asin",
"Bad epsilon for acos",
"Bad argument for acos",
"Bad epsilon for atan",
"Bad argument for atan",
"Bad epsilon for acot",
"Bad argument for acot",
"Bad epsilon for asec",
"Bad argument for asec",
"Bad epsilon for acsc",
"Bad argument for acsc",
"Bad epsilon for asin",
"Bad argument for asinh",
"Bad epsilon for acosh",
"Bad argument for acosh",
"Bad epsilon for atanh",
"Bad argument for atanh",
"Bad epsilon for acoth",
"Bad argument for acoth",
"Bad epsilon for asech",
"Bad argument for asech",
"Bad epsilon for acsch",
"Bad argument for acsch",
"Bad epsilon for gd",
"Bad argument for gd",
"Bad epsilon for agd",
"Bad argument for agd",
"Log of zero or infinity",
"String addition failure",
"String multiplication failure",
"String reversal failure",
"String subtraction failure",
"Bad argument type for bit",
"Index too large for bit",
"Non-integer second argument for setbit",
"Out-of-range index for setbit",
"Non-string first argument for setbit",
"Bad argument for or",
"Bad argument for and",
"Allocation failure for string or",
"Allocation failure for string and",
"Bad argument for xorvalue",
"Bad argument for comp",
"Allocation failure for string diff",
"Allocation failure for string comp",
"Bad first argument for segment",
"Bad second argument for segment",
"Bad third argument for segment",
"Failure for string segment",
"Bad argument type for highbit",
"Non-integer argument for highbit",
"Bad argument type for lowbit",
"Non-integer argument for lowbit",
"Bad argument type for unary hash op",
"Bad argument type for binary hash op",
"Bad first argument for head",
"Bad second argument for head",
"Failure for strhead",
"Bad first argument for tail",
"Bad second argument for tail",
"Failure for strtail",
"Failure for strshift",
"Non-string argument for strcmp",
"Bad argument type for strncmp",
"Varying types of argument for xor",
"Bad argument type for xor",
"Bad argument type for strcpy",
"Bad argument type for strncpy",
"Bad argument type for unary backslash",
"Bad argument type for setminus",
"Bad first argument type for indices",
"Bad second argument for indices",
"Too-large re(argument) for exp",
"Too-large re(argument) for sinh",
"Too-large re(argument) for cosh",
"Too-large im(argument) for sin",
"Too-large im(argument) for cos",
"Infinite or too-large result for gd",
"Infinite or too-large result for agd",
"Too-large value for power",
"Too-large value for root",
"Non-real first arg for digit",
"Non-integral second arg for digit",
"Bad third arg for digit",
"Bad first argument for places",
"Bad second argument for places",
"Bad first argument for digits",
"Bad second argument for digits",
"Bad first argument for ilog",
"Bad second argument for ilog",
"Bad argument for ilog10",
"Bad argument for ilog2",
"Non-integer second arg for comb",
"Too-large second arg for comb",
"Bad argument for catalan",
"Bad argument for bern",
"Bad argument for euler",
"Bad argument for sleep",
"calc_tty failure",
"No-copy-to destination for octet assign",
"No-copy-from source for octet assign",
"No-change destination for octet assign",
"Non-variable destination for assign",
"No-assign-to destination for assign",
"No-assign-from source for assign",
"No-change destination for assign",
"No-type-change destination for assign",
"No-error-value destination for assign",
"No-copy argument for octet swap",
"No-assign-to-or-from argument for swap",
"Non-lvalue argument for swap",
"Non-lvalue argument 3 or 4 for quomod",
"Non-real-number arg 1 or 2 or bad arg 5 for quomod",
"No-assign-to argument 3 or 4 for quomod",
"No-copy-to or no-change argument for octet preinc",
"Non-variable argument for preinc",
"No-assign-to or no-change argument for preinc",
"No-copy-to or no-change argument for octet predec",
"Non-variable argument for predec",
"No-assign-to or no-change argument for predec",
"No-copy-to or no-change argument for octet postinc",
"Non-variable argument for postinc",
"No-assign-to or no-change argument for postinc",
"No-copy-to or no-change argument for octet postdec",
"Non-variable argument for postdec",
"No-assign-to or no-change argument for postdec",
"Error-type structure for initialization",
"No-copy-to structure for initialization",
"Too many initializer values",
"Attempt to initialize freed named block",
"Bad structure type for initialization",
"No-assign-to element for initialization",
"No-change element for initialization",
"No-type-change element for initialization",
"No-error-value element for initialization",
"No-assign-or-copy-from source for initialization",
"No-relocate for list insert",
"No-relocate for list delete",
"No-relocate for list push",
"No-relocate for list append",
"No-relocate for list pop",
"No-relocate for list remove",
"Non-variable first argument for modify",
"Non-string second argument for modify",
"No-change first argument for modify",
"Undefined function for modify",
"Unacceptable type first argument for modify",
"Non-string arguments for fpathopen",
"Unrecognized mode for fpathopen",
"Bad epsilon argument for log",
"Non-numeric first argument for log",
"Non-file argument for fgetfile",
"File argument for fgetfile not open for reading",
"Unable to set file position in fgetfile",
"Non-representable type for estr",
"Non-string argument for strcasecmp",
"Bad argument type for strncasecmp",
"Bad argument for isupper",
"Bad argument for islower",
"Bad argument for isalnum",
"Bad argument for isalpha",
"Bad argument for isascii",
"Bad argument for iscntrl",
"Bad argument for isdigit",
"Bad argument for isgraph",
"Bad argument for isprint",
"Bad argument for ispunct",
"Bad argument for isspace",
"Bad argument for isxdigit",
"Bad argument type for strtoupper",
"Bad argument type for strtolower",
NULL
};

View File

@@ -1,455 +0,0 @@
/*
* DO NOT EDIT
*
* generated by calcerr.tbl via Makefile
*/
#if !defined(__CALCERR_H__)
#define __CALCERR_H__
#define E__BASE 10000 /* calc errors start above here */
#define E_1OVER0 10001 /* Division by zero */
#define E_0OVER0 10002 /* Indeterminate (0/0) */
#define E_ADD 10003 /* Bad arguments for + */
#define E_SUB 10004 /* Bad arguments for binary - */
#define E_MUL 10005 /* Bad arguments for * */
#define E_DIV 10006 /* Bad arguments for / */
#define E_NEG 10007 /* Bad argument for unary - */
#define E_SQUARE 10008 /* Bad argument for squaring */
#define E_INV 10009 /* Bad argument for inverse */
#define E_INCV 10010 /* Bad argument for ++ */
#define E_DECV 10011 /* Bad argument for -- */
#define E_INT 10012 /* Bad argument for int */
#define E_FRAC 10013 /* Bad argument for frac */
#define E_CONJ 10014 /* Bad argument for conj */
#define E_APPR 10015 /* Bad first argument for appr */
#define E_APPR2 10016 /* Bad second argument for appr */
#define E_APPR3 10017 /* Bad third argument for appr */
#define E_ROUND 10018 /* Bad first argument for round */
#define E_ROUND2 10019 /* Bad second argument for round */
#define E_ROUND3 10020 /* Bad third argument for round */
#define E_BROUND 10021 /* Bad first argument for bround */
#define E_BROUND2 10022 /* Bad second argument for bround */
#define E_BROUND3 10023 /* Bad third argument for bround */
#define E_SQRT 10024 /* Bad first argument for sqrt */
#define E_SQRT2 10025 /* Bad second argument for sqrt */
#define E_SQRT3 10026 /* Bad third argument for sqrt */
#define E_ROOT 10027 /* Bad first argument for root */
#define E_ROOT2 10028 /* Bad second argument for root */
#define E_ROOT3 10029 /* Bad third argument for root */
#define E_NORM 10030 /* Bad argument for norm */
#define E_SHIFT 10031 /* Bad first argument for << or >> */
#define E_SHIFT2 10032 /* Bad second argument for << or >> */
#define E_SCALE 10033 /* Bad first argument for scale */
#define E_SCALE2 10034 /* Bad second argument for scale */
#define E_POWI 10035 /* Bad first argument for ^ */
#define E_POWI2 10036 /* Bad second argument for ^ */
#define E_POWER 10037 /* Bad first argument for power */
#define E_POWER2 10038 /* Bad second argument for power */
#define E_POWER3 10039 /* Bad third argument for power */
#define E_QUO 10040 /* Bad first argument for quo or // */
#define E_QUO2 10041 /* Bad second argument for quo or // */
#define E_QUO3 10042 /* Bad third argument for quo */
#define E_MOD 10043 /* Bad first argument for mod or % */
#define E_MOD2 10044 /* Bad second argument for mod or % */
#define E_MOD3 10045 /* Bad third argument for mod */
#define E_SGN 10046 /* Bad argument for sgn */
#define E_ABS 10047 /* Bad first argument for abs */
#define E_ABS2 10048 /* Bad second argument for abs */
#define E_EVAL 10049 /* Scan error in argument for eval */
#define E_STR 10050 /* Non-simple type for str */
#define E_EXP1 10051 /* Non-real epsilon for exp */
#define E_EXP2 10052 /* Bad first argument for exp */
#define E_FPUTC1 10053 /* Non-file first argument for fputc */
#define E_FPUTC2 10054 /* Bad second argument for fputc */
#define E_FPUTC3 10055 /* File not open for writing for fputc */
#define E_FGETC1 10056 /* Non-file first argument for fgetc */
#define E_FGETC2 10057 /* File not open for reading for fgetc */
#define E_FOPEN1 10058 /* Non-string arguments for fopen */
#define E_FOPEN2 10059 /* Unrecognized mode for fopen */
#define E_FREOPEN1 10060 /* Non-file first argument for freopen */
#define E_FREOPEN2 10061 /* Non-string or unrecognized mode for freopen */
#define E_FREOPEN3 10062 /* Non-string third argument for freopen */
#define E_FCLOSE1 10063 /* Non-file argument for fclose */
#define E_FFLUSH 10064 /* Non-file argument for fflush */
#define E_FPUTS1 10065 /* Non-file first argument for fputs */
#define E_FPUTS2 10066 /* Non-string argument after first for fputs */
#define E_FPUTS3 10067 /* File not open for writing for fputs */
#define E_FGETS1 10068 /* Non-file argument for fgets */
#define E_FGETS2 10069 /* File not open for reading for fgets */
#define E_FPUTSTR1 10070 /* Non-file first argument for fputstr */
#define E_FPUTSTR2 10071 /* Non-string argument after first for fputstr */
#define E_FPUTSTR3 10072 /* File not open for writing for fputstr */
#define E_FGETSTR1 10073 /* Non-file first argument for fgetstr */
#define E_FGETSTR2 10074 /* File not open for reading for fgetstr */
#define E_FGETLINE1 10075 /* Non-file argument for fgetline */
#define E_FGETLINE2 10076 /* File not open for reading for fgetline */
#define E_FGETFIELD1 10077 /* Non-file argument for fgetfield */
#define E_FGETFIELD2 10078 /* File not open for reading for fgetfield */
#define E_REWIND1 10079 /* Non-file argument for rewind */
#define E_FILES 10080 /* Non-integer argument for files */
#define E_PRINTF1 10081 /* Non-string fmt argument for fprint */
#define E_PRINTF2 10082 /* Stdout not open for writing to ??? */
#define E_FPRINTF1 10083 /* Non-file first argument for fprintf */
#define E_FPRINTF2 10084 /* Non-string second (fmt) argument for fprintf */
#define E_FPRINTF3 10085 /* File not open for writing for fprintf */
#define E_STRPRINTF1 10086 /* Non-string first (fmt) argument for strprintf */
#define E_STRPRINTF2 10087 /* Error in attempting strprintf ??? */
#define E_FSCAN1 10088 /* Non-file first argument for fscan */
#define E_FSCAN2 10089 /* File not open for reading for fscan */
#define E_STRSCAN 10090 /* Non-string first argument for strscan */
#define E_FSCANF1 10091 /* Non-file first argument for fscanf */
#define E_FSCANF2 10092 /* Non-string second (fmt) argument for fscanf */
#define E_FSCANF3 10093 /* Non-lvalue argument after second for fscanf */
#define E_FSCANF4 10094 /* File not open for reading or other error for fscanf */
#define E_STRSCANF1 10095 /* Non-string first argument for strscanf */
#define E_STRSCANF2 10096 /* Non-string second (fmt) argument for strscanf */
#define E_STRSCANF3 10097 /* Non-lvalue argument after second for strscanf */
#define E_STRSCANF4 10098 /* Some error in attempting strscanf ??? */
#define E_SCANF1 10099 /* Non-string first (fmt) argument for scanf */
#define E_SCANF2 10100 /* Non-lvalue argument after first for scanf */
#define E_SCANF3 10101 /* Some error in attempting scanf ??? */
#define E_FTELL1 10102 /* Non-file argument for ftell */
#define E_FTELL2 10103 /* File not open or other error for ftell */
#define E_FSEEK1 10104 /* Non-file first argument for fseek */
#define E_FSEEK2 10105 /* Non-integer or negative second argument for fseek */
#define E_FSEEK3 10106 /* File not open or other error for fseek */
#define E_FSIZE1 10107 /* Non-file argument for fsize */
#define E_FSIZE2 10108 /* File not open or other error for fsize */
#define E_FEOF1 10109 /* Non-file argument for feof */
#define E_FEOF2 10110 /* File not open or other error for feof */
#define E_FERROR1 10111 /* Non-file argument for ferror */
#define E_FERROR2 10112 /* File not open or other error for ferror */
#define E_UNGETC1 10113 /* Non-file argument for ungetc */
#define E_UNGETC2 10114 /* File not open for reading for ungetc */
#define E_UNGETC3 10115 /* Bad second argument or other error for ungetc */
#define E_BIGEXP 10116 /* Exponent too big in scanning */
#define E_ISATTY1 10117 /* E_ISATTY1 is no longer used */
#define E_ISATTY2 10118 /* E_ISATTY2 is no longer used */
#define E_ACCESS1 10119 /* Non-string first argument for access */
#define E_ACCESS2 10120 /* Bad second argument for access */
#define E_SEARCH1 10121 /* Bad first argument for search */
#define E_SEARCH2 10122 /* Bad second argument for search */
#define E_SEARCH3 10123 /* Bad third argument for search */
#define E_SEARCH4 10124 /* Bad fourth argument for search */
#define E_SEARCH5 10125 /* Cannot find fsize or fpos for search */
#define E_SEARCH6 10126 /* File not readable for search */
#define E_RSEARCH1 10127 /* Bad first argument for rsearch */
#define E_RSEARCH2 10128 /* Bad second argument for rsearch */
#define E_RSEARCH3 10129 /* Bad third argument for rsearch */
#define E_RSEARCH4 10130 /* Bad fourth argument for rsearch */
#define E_RSEARCH5 10131 /* Cannot find fsize or fpos for rsearch */
#define E_RSEARCH6 10132 /* File not readable for rsearch */
#define E_MANYOPEN 10133 /* Too many open files */
#define E_REWIND2 10134 /* Attempt to rewind a file that is not open */
#define E_STRERROR1 10135 /* Bad argument type for strerror */
#define E_STRERROR2 10136 /* Index out of range for strerror */
#define E_COS1 10137 /* Bad epsilon for cos */
#define E_COS2 10138 /* Bad first argument for cos */
#define E_SIN1 10139 /* Bad epsilon for sin */
#define E_SIN2 10140 /* Bad first argument for sin */
#define E_EVAL2 10141 /* Non-string argument for eval */
#define E_ARG1 10142 /* Bad epsilon for arg */
#define E_ARG2 10143 /* Bad first argument for arg */
#define E_POLAR1 10144 /* Non-real argument for polar */
#define E_POLAR2 10145 /* Bad epsilon for polar */
#define E_FCNT 10146 /* Non-integral argument for fcnt */
#define E_MATFILL1 10147 /* Non-variable first argument for matfill */
#define E_MATFILL2 10148 /* Non-matrix first argument-value for matfill */
#define E_MATDIM 10149 /* Non-matrix argument for matdim */
#define E_MATSUM 10150 /* Non-matrix argument for matsum */
#define E_ISIDENT 10151 /* E_ISIDENT is no longer used */
#define E_MATTRANS1 10152 /* Non-matrix argument for mattrans */
#define E_MATTRANS2 10153 /* Non-two-dimensional matrix for mattrans */
#define E_DET1 10154 /* Non-matrix argument for det */
#define E_DET2 10155 /* Matrix for det not of dimension 2 */
#define E_DET3 10156 /* Non-square matrix for det */
#define E_MATMIN1 10157 /* Non-matrix first argument for matmin */
#define E_MATMIN2 10158 /* Non-positive-integer second argument for matmin */
#define E_MATMIN3 10159 /* Second argument for matmin exceeds dimension */
#define E_MATMAX1 10160 /* Non-matrix first argument for matmin */
#define E_MATMAX2 10161 /* Second argument for matmax not positive integer */
#define E_MATMAX3 10162 /* Second argument for matmax exceeds dimension */
#define E_CP1 10163 /* Non-matrix argument for cp */
#define E_CP2 10164 /* Non-one-dimensional matrix for cp */
#define E_CP3 10165 /* Matrix size not 3 for cp */
#define E_DP1 10166 /* Non-matrix argument for dp */
#define E_DP2 10167 /* Non-one-dimensional matrix for dp */
#define E_DP3 10168 /* Different-size matrices for dp */
#define E_STRLEN 10169 /* Non-string argument for strlen */
#define E_STRCAT 10170 /* Non-string argument for strcat */
#define E_SUBSTR1 10171 /* Non-string first argument for strcat */
#define E_SUBSTR2 10172 /* Non-non-negative integer second argument for strcat */
#define E_CHAR 10173 /* Bad argument for char */
#define E_ORD 10174 /* Non-string argument for ord */
#define E_INSERT1 10175 /* Non-list-variable first argument for insert */
#define E_INSERT2 10176 /* Non-integral second argument for insert */
#define E_PUSH 10177 /* Non-list-variable first argument for push */
#define E_APPEND 10178 /* Non-list-variable first argument for append */
#define E_DELETE1 10179 /* Non-list-variable first argument for delete */
#define E_DELETE2 10180 /* Non-integral second argument for delete */
#define E_POP 10181 /* Non-list-variable argument for pop */
#define E_REMOVE 10182 /* Non-list-variable argument for remove */
#define E_LN1 10183 /* Bad epsilon argument for ln */
#define E_LN2 10184 /* Non-numeric first argument for ln */
#define E_ERROR1 10185 /* Non-integer argument for error */
#define E_ERROR2 10186 /* Argument outside range for error */
#define E_EVAL3 10187 /* Attempt to eval at maximum input depth */
#define E_EVAL4 10188 /* Unable to open string for reading */
#define E_RM1 10189 /* First argument for rm is not a non-empty string */
#define E_RM2 10190 /* Unable to remove a file */
#define E_RDPERM 10191 /* Operation allowed because calc mode disallows read operations */
#define E_WRPERM 10192 /* Operation allowed because calc mode disallows write operations */
#define E_EXPERM 10193 /* Operation allowed because calc mode disallows exec operations */
#define E_MIN 10194 /* Unordered arguments for min */
#define E_MAX 10195 /* Unordered arguments for max */
#define E_LISTMIN 10196 /* Unordered items for minimum of list */
#define E_LISTMAX 10197 /* Unordered items for maximum of list */
#define E_SIZE 10198 /* Size undefined for argument type */
#define E_NO_C_ARG 10199 /* Calc must be run with a -C argument to use custom function */
#define E_NO_CUSTOM 10200 /* Calc was built with custom functions disabled */
#define E_UNK_CUSTOM 10201 /* Custom function unknown, try: show custom */
#define E_BLK1 10202 /* Non-integral length for block */
#define E_BLK2 10203 /* Negative or too-large length for block */
#define E_BLK3 10204 /* Non-integral chunksize for block */
#define E_BLK4 10205 /* Negative or too-large chunksize for block */
#define E_BLKFREE1 10206 /* Named block does not exist for blkfree */
#define E_BLKFREE2 10207 /* Non-integral id specification for blkfree */
#define E_BLKFREE3 10208 /* Block with specified id does not exist */
#define E_BLKFREE4 10209 /* Block already freed */
#define E_BLKFREE5 10210 /* No-realloc protection prevents blkfree */
#define E_BLOCKS1 10211 /* Non-integer argument for blocks */
#define E_BLOCKS2 10212 /* Non-allocated index number for blocks */
#define E_COPY1 10213 /* Non-integer or negative source index for copy */
#define E_COPY2 10214 /* Source index too large for copy */
#define E_COPY3 10215 /* E_COPY3 is no longer used */
#define E_COPY4 10216 /* Non-integer or negative number for copy */
#define E_COPY5 10217 /* Number too large for copy */
#define E_COPY6 10218 /* Non-integer or negative destination index for copy */
#define E_COPY7 10219 /* Destination index too large for copy */
#define E_COPY8 10220 /* Freed block source for copy */
#define E_COPY9 10221 /* Unsuitable source type for copy */
#define E_COPY10 10222 /* Freed block destinction for copy */
#define E_COPY11 10223 /* Unsuitable destination type for copy */
#define E_COPY12 10224 /* Incompatible source and destination for copy */
#define E_COPY13 10225 /* No-copy-from source variable */
#define E_COPY14 10226 /* No-copy-to destination variable */
#define E_COPY15 10227 /* No-copy-from source named block */
#define E_COPY16 10228 /* No-copy-to destination named block */
#define E_COPY17 10229 /* No-relocate destination for copy */
#define E_COPYF1 10230 /* File not open for copy */
#define E_COPYF2 10231 /* fseek or fsize failure for copy */
#define E_COPYF3 10232 /* fwrite error for copy */
#define E_COPYF4 10233 /* fread error for copy */
#define E_PROTECT1 10234 /* Non-variable first argument for protect */
#define E_PROTECT2 10235 /* Bad second argument for protect */
#define E_PROTECT3 10236 /* Bad third argument for protect */
#define E_MATFILL3 10237 /* No-copy-to destination for matfill */
#define E_MATFILL4 10238 /* No-assign-from source for matfill */
#define E_MATTRACE1 10239 /* Non-matrix argument for mattrace */
#define E_MATTRACE2 10240 /* Non-two-dimensional argument for mattrace */
#define E_MATTRACE3 10241 /* Non-square argument for mattrace */
#define E_TAN1 10242 /* Bad epsilon for tan */
#define E_TAN2 10243 /* Bad argument for tan */
#define E_COT1 10244 /* Bad epsilon for cot */
#define E_COT2 10245 /* Bad argument for cot */
#define E_SEC1 10246 /* Bad epsilon for sec */
#define E_SEC2 10247 /* Bad argument for sec */
#define E_CSC1 10248 /* Bad epsilon for csc */
#define E_CSC2 10249 /* Bad argument for csc */
#define E_SINH1 10250 /* Bad epsilon for sinh */
#define E_SINH2 10251 /* Bad argument for sinh */
#define E_COSH1 10252 /* Bad epsilon for cosh */
#define E_COSH2 10253 /* Bad argument for cosh */
#define E_TANH1 10254 /* Bad epsilon for tanh */
#define E_TANH2 10255 /* Bad argument for tanh */
#define E_COTH1 10256 /* Bad epsilon for coth */
#define E_COTH2 10257 /* Bad argument for coth */
#define E_SECH1 10258 /* Bad epsilon for sech */
#define E_SECH2 10259 /* Bad argument for sech */
#define E_CSCH1 10260 /* Bad epsilon for csch */
#define E_CSCH2 10261 /* Bad argument for csch */
#define E_ASIN1 10262 /* Bad epsilon for asin */
#define E_ASIN2 10263 /* Bad argument for asin */
#define E_ACOS1 10264 /* Bad epsilon for acos */
#define E_ACOS2 10265 /* Bad argument for acos */
#define E_ATAN1 10266 /* Bad epsilon for atan */
#define E_ATAN2 10267 /* Bad argument for atan */
#define E_ACOT1 10268 /* Bad epsilon for acot */
#define E_ACOT2 10269 /* Bad argument for acot */
#define E_ASEC1 10270 /* Bad epsilon for asec */
#define E_ASEC2 10271 /* Bad argument for asec */
#define E_ACSC1 10272 /* Bad epsilon for acsc */
#define E_ACSC2 10273 /* Bad argument for acsc */
#define E_ASINH1 10274 /* Bad epsilon for asin */
#define E_ASINH2 10275 /* Bad argument for asinh */
#define E_ACOSH1 10276 /* Bad epsilon for acosh */
#define E_ACOSH2 10277 /* Bad argument for acosh */
#define E_ATANH1 10278 /* Bad epsilon for atanh */
#define E_ATANH2 10279 /* Bad argument for atanh */
#define E_ACOTH1 10280 /* Bad epsilon for acoth */
#define E_ACOTH2 10281 /* Bad argument for acoth */
#define E_ASECH1 10282 /* Bad epsilon for asech */
#define E_ASECH2 10283 /* Bad argument for asech */
#define E_ACSCH1 10284 /* Bad epsilon for acsch */
#define E_ACSCH2 10285 /* Bad argument for acsch */
#define E_GD1 10286 /* Bad epsilon for gd */
#define E_GD2 10287 /* Bad argument for gd */
#define E_AGD1 10288 /* Bad epsilon for agd */
#define E_AGD2 10289 /* Bad argument for agd */
#define E_LOGINF 10290 /* Log of zero or infinity */
#define E_STRADD 10291 /* String addition failure */
#define E_STRMUL 10292 /* String multiplication failure */
#define E_STRNEG 10293 /* String reversal failure */
#define E_STRSUB 10294 /* String subtraction failure */
#define E_BIT1 10295 /* Bad argument type for bit */
#define E_BIT2 10296 /* Index too large for bit */
#define E_SETBIT1 10297 /* Non-integer second argument for setbit */
#define E_SETBIT2 10298 /* Out-of-range index for setbit */
#define E_SETBIT3 10299 /* Non-string first argument for setbit */
#define E_OR 10300 /* Bad argument for or */
#define E_AND 10301 /* Bad argument for and */
#define E_STROR 10302 /* Allocation failure for string or */
#define E_STRAND 10303 /* Allocation failure for string and */
#define E_XOR 10304 /* Bad argument for xorvalue */
#define E_COMP 10305 /* Bad argument for comp */
#define E_STRDIFF 10306 /* Allocation failure for string diff */
#define E_STRCOMP 10307 /* Allocation failure for string comp */
#define E_SEG1 10308 /* Bad first argument for segment */
#define E_SEG2 10309 /* Bad second argument for segment */
#define E_SEG3 10310 /* Bad third argument for segment */
#define E_STRSEG 10311 /* Failure for string segment */
#define E_HIGHBIT1 10312 /* Bad argument type for highbit */
#define E_HIGHBIT2 10313 /* Non-integer argument for highbit */
#define E_LOWBIT1 10314 /* Bad argument type for lowbit */
#define E_LOWBIT2 10315 /* Non-integer argument for lowbit */
#define E_CONTENT 10316 /* Bad argument type for unary hash op */
#define E_HASHOP 10317 /* Bad argument type for binary hash op */
#define E_HEAD1 10318 /* Bad first argument for head */
#define E_HEAD2 10319 /* Bad second argument for head */
#define E_STRHEAD 10320 /* Failure for strhead */
#define E_TAIL1 10321 /* Bad first argument for tail */
#define E_TAIL2 10322 /* Bad second argument for tail */
#define E_STRTAIL 10323 /* Failure for strtail */
#define E_STRSHIFT 10324 /* Failure for strshift */
#define E_STRCMP 10325 /* Non-string argument for strcmp */
#define E_STRNCMP 10326 /* Bad argument type for strncmp */
#define E_XOR1 10327 /* Varying types of argument for xor */
#define E_XOR2 10328 /* Bad argument type for xor */
#define E_STRCPY 10329 /* Bad argument type for strcpy */
#define E_STRNCPY 10330 /* Bad argument type for strncpy */
#define E_BACKSLASH 10331 /* Bad argument type for unary backslash */
#define E_SETMINUS 10332 /* Bad argument type for setminus */
#define E_INDICES1 10333 /* Bad first argument type for indices */
#define E_INDICES2 10334 /* Bad second argument for indices */
#define E_EXP3 10335 /* Too-large re(argument) for exp */
#define E_SINH3 10336 /* Too-large re(argument) for sinh */
#define E_COSH3 10337 /* Too-large re(argument) for cosh */
#define E_SIN3 10338 /* Too-large im(argument) for sin */
#define E_COS3 10339 /* Too-large im(argument) for cos */
#define E_GD3 10340 /* Infinite or too-large result for gd */
#define E_AGD3 10341 /* Infinite or too-large result for agd */
#define E_POWER4 10342 /* Too-large value for power */
#define E_ROOT4 10343 /* Too-large value for root */
#define E_DGT1 10344 /* Non-real first arg for digit */
#define E_DGT2 10345 /* Non-integral second arg for digit */
#define E_DGT3 10346 /* Bad third arg for digit */
#define E_PLCS1 10347 /* Bad first argument for places */
#define E_PLCS2 10348 /* Bad second argument for places */
#define E_DGTS1 10349 /* Bad first argument for digits */
#define E_DGTS2 10350 /* Bad second argument for digits */
#define E_ILOG 10351 /* Bad first argument for ilog */
#define E_ILOGB 10352 /* Bad second argument for ilog */
#define E_ILOG10 10353 /* Bad argument for ilog10 */
#define E_ILOG2 10354 /* Bad argument for ilog2 */
#define E_COMB1 10355 /* Non-integer second arg for comb */
#define E_COMB2 10356 /* Too-large second arg for comb */
#define E_CTLN 10357 /* Bad argument for catalan */
#define E_BERN 10358 /* Bad argument for bern */
#define E_EULER 10359 /* Bad argument for euler */
#define E_SLEEP 10360 /* Bad argument for sleep */
#define E_TTY 10361 /* calc_tty failure */
#define E_ASSIGN1 10362 /* No-copy-to destination for octet assign */
#define E_ASSIGN2 10363 /* No-copy-from source for octet assign */
#define E_ASSIGN3 10364 /* No-change destination for octet assign */
#define E_ASSIGN4 10365 /* Non-variable destination for assign */
#define E_ASSIGN5 10366 /* No-assign-to destination for assign */
#define E_ASSIGN6 10367 /* No-assign-from source for assign */
#define E_ASSIGN7 10368 /* No-change destination for assign */
#define E_ASSIGN8 10369 /* No-type-change destination for assign */
#define E_ASSIGN9 10370 /* No-error-value destination for assign */
#define E_SWAP1 10371 /* No-copy argument for octet swap */
#define E_SWAP2 10372 /* No-assign-to-or-from argument for swap */
#define E_SWAP3 10373 /* Non-lvalue argument for swap */
#define E_QUOMOD1 10374 /* Non-lvalue argument 3 or 4 for quomod */
#define E_QUOMOD2 10375 /* Non-real-number arg 1 or 2 or bad arg 5 for quomod */
#define E_QUOMOD3 10376 /* No-assign-to argument 3 or 4 for quomod */
#define E_PREINC1 10377 /* No-copy-to or no-change argument for octet preinc */
#define E_PREINC2 10378 /* Non-variable argument for preinc */
#define E_PREINC3 10379 /* No-assign-to or no-change argument for preinc */
#define E_PREDEC1 10380 /* No-copy-to or no-change argument for octet predec */
#define E_PREDEC2 10381 /* Non-variable argument for predec */
#define E_PREDEC3 10382 /* No-assign-to or no-change argument for predec */
#define E_POSTINC1 10383 /* No-copy-to or no-change argument for octet postinc */
#define E_POSTINC2 10384 /* Non-variable argument for postinc */
#define E_POSTINC3 10385 /* No-assign-to or no-change argument for postinc */
#define E_POSTDEC1 10386 /* No-copy-to or no-change argument for octet postdec */
#define E_POSTDEC2 10387 /* Non-variable argument for postdec */
#define E_POSTDEC3 10388 /* No-assign-to or no-change argument for postdec */
#define E_INIT1 10389 /* Error-type structure for initialization */
#define E_INIT2 10390 /* No-copy-to structure for initialization */
#define E_INIT3 10391 /* Too many initializer values */
#define E_INIT4 10392 /* Attempt to initialize freed named block */
#define E_INIT5 10393 /* Bad structure type for initialization */
#define E_INIT6 10394 /* No-assign-to element for initialization */
#define E_INIT7 10395 /* No-change element for initialization */
#define E_INIT8 10396 /* No-type-change element for initialization */
#define E_INIT9 10397 /* No-error-value element for initialization */
#define E_INIT10 10398 /* No-assign-or-copy-from source for initialization */
#define E_LIST1 10399 /* No-relocate for list insert */
#define E_LIST2 10400 /* No-relocate for list delete */
#define E_LIST3 10401 /* No-relocate for list push */
#define E_LIST4 10402 /* No-relocate for list append */
#define E_LIST5 10403 /* No-relocate for list pop */
#define E_LIST6 10404 /* No-relocate for list remove */
#define E_MODIFY1 10405 /* Non-variable first argument for modify */
#define E_MODIFY2 10406 /* Non-string second argument for modify */
#define E_MODIFY3 10407 /* No-change first argument for modify */
#define E_MODIFY4 10408 /* Undefined function for modify */
#define E_MODIFY5 10409 /* Unacceptable type first argument for modify */
#define E_FPATHOPEN1 10410 /* Non-string arguments for fpathopen */
#define E_FPATHOPEN2 10411 /* Unrecognized mode for fpathopen */
#define E_LOG1 10412 /* Bad epsilon argument for log */
#define E_LOG2 10413 /* Non-numeric first argument for log */
#define E_FGETFILE1 10414 /* Non-file argument for fgetfile */
#define E_FGETFILE2 10415 /* File argument for fgetfile not open for reading */
#define E_FGETFILE3 10416 /* Unable to set file position in fgetfile */
#define E_ESTR 10417 /* Non-representable type for estr */
#define E_STRCASECMP 10418 /* Non-string argument for strcasecmp */
#define E_STRNCASECMP 10419 /* Bad argument type for strncasecmp */
#define E_ISUPPER 10420 /* Bad argument for isupper */
#define E_ISLOWER 10421 /* Bad argument for islower */
#define E_ISALNUM 10422 /* Bad argument for isalnum */
#define E_ISALPHA 10423 /* Bad argument for isalpha */
#define E_ISASCII 10424 /* Bad argument for isascii */
#define E_ISCNTRL 10425 /* Bad argument for iscntrl */
#define E_ISDIGIT 10426 /* Bad argument for isdigit */
#define E_ISGRAPH 10427 /* Bad argument for isgraph */
#define E_ISPRINT 10428 /* Bad argument for isprint */
#define E_ISPUNCT 10429 /* Bad argument for ispunct */
#define E_ISSPACE 10430 /* Bad argument for isspace */
#define E_ISXDIGIT 10431 /* Bad argument for isxdigit */
#define E_STRTOUPPER 10432 /* Bad argument type for strtoupper */
#define E_STRTOLOWER 10433 /* Bad argument type for strtolower */
#define E__HIGHEST 10433 /* highest calc error */
#define E__COUNT 433 /* number of calc errors */
#define E_USERDEF 20000 /* base of user defined errors */
/* names of calc error values */
#endif /* !__CALCERR_H__ */

View File

@@ -1,36 +0,0 @@
/*
* DO NOT EDIT -- generated by the Makefile
*/
#if !defined(__CONF_H__)
#define __CONF_H__
/* the default :-separated search path */
#if !defined(DEFAULTCALCPATH)
#define DEFAULTCALCPATH "./cal"
#endif /* DEFAULTCALCPATH */
/* the default :-separated startup file list */
#if !defined(DEFAULTCALCRC)
#define DEFAULTCALCRC "/lib/calc/startup:~/.calcrc:./.calcinit"
#endif /* DEFAULTCALCRC */
/* the location of the help directory */
#if !defined(HELPDIR)
#define HELPDIR "/lib/calc/help"
#endif /* HELPDIR */
/* the location of the custom help directory */
#if !defined(CUSTOMHELPDIR)
#define CUSTOMHELPDIR "/lib/calc/help/custhelp"
#endif /* CUSTOMHELPDIR */
/* the default pager to use */
#if !defined(DEFAULTCALCPAGER)
#define DEFAULTCALCPAGER "less.exe"
#endif /* DEFAULTCALCPAGER */
#endif /* !__CONF_H__ */

View File

@@ -1,15 +0,0 @@
/*
* DO NOT EDIT -- generated by the Makefile
*/
#if !defined(__ENDIAN_CALC_H__)
#define __ENDIAN_CALC_H__
/* what byte order are we? */
#include <endian.h>
#define CALC_BYTE_ORDER BYTE_ORDER
#endif /* !__ENDIAN_CALC_H__ */

View File

@@ -1,36 +0,0 @@
/*
* DO NOT EDIT -- generated by the Makefile
*/
#if !defined(__FPOSVAL_H__)
#define __FPOSVAL_H__
/* what are our file position & size types? */
#undef FILEPOS_BITS
#define FILEPOS_BITS 64
#undef FILEPOS_LEN
#define FILEPOS_LEN 8
#define SWAP_HALF_IN_FILEPOS(dest, src) (*(dest) = *(src))
#undef OFF_T_BITS
#define OFF_T_BITS 32
#undef OFF_T_LEN
#define OFF_T_LEN 4
#define SWAP_HALF_IN_OFF_T(dest, src) (*(dest) = *(src))
#undef DEV_BITS
#define DEV_BITS 32
#undef DEV_LEN
#define DEV_LEN 4
#define SWAP_HALF_IN_DEV(dest, src) memcpy((void *)(dest), (void *)(src), 4)
#undef INODE_BITS
#define INODE_BITS 16
#undef INODE_LEN
#define INODE_LEN 2
#define SWAP_HALF_IN_INODE(dest, src) memcpy((void *)(dest), (void *)(src), 2)
#endif /* !__FPOSVAL_H__ */

View File

@@ -1,16 +0,0 @@
/*
* DO NOT EDIT -- generated by the Makefile
*/
#if !defined(CALC_HAVE_CONST_H)
#define CALC_HAVE_CONST_H
/* do we have or want const? */
#define HAVE_CONST /* yes */
#undef CONST
#define CONST const /* yes */
#endif /* !CALC_HAVE_CONST_H */

View File

@@ -1,16 +0,0 @@
/*
* DO NOT EDIT -- generated by the Makefile
*/
#if !defined(CALC_HAVE_FPOS_H)
#define CALC_HAVE_FPOS_H
/* do we have fgetpos & fsetpos functions? */
#undef HAVE_FPOS /* no */
typedef long FILEPOS;
#endif /* !CALC_HAVE_FPOS_H */

View File

@@ -1,16 +0,0 @@
/*
* DO NOT EDIT -- generated by the Makefile
*/
#if !defined(CALC_HAVE_FPOS_POS_H)
#define CALC_HAVE_FPOS_POS_H
/* do we have fgetpos & fsetpos functions? */
#undef HAVE_FPOS_POS /* no */
#undef FPOS_POS_BITS
#undef FPOS_POS_LEN
#endif /* !CALC_HAVE_FPOS_POS_H */

View File

@@ -1,14 +0,0 @@
/*
* DO NOT EDIT -- generated by the Makefile
*/
#if !defined(CALC_HAVE_GETPGID_H)
#define CALC_HAVE_GETPGID_H
/* do we have or want getpgid()? */
#undef HAVE_GETPGID /* no */
#endif /* !CALC_HAVE_GETPGID_H */

View File

@@ -1,14 +0,0 @@
/*
* DO NOT EDIT -- generated by the Makefile
*/
#if !defined(CALC_HAVE_GETPRID_H)
#define CALC_HAVE_GETPRID_H
/* do we have or want getprid()? */
#undef HAVE_GETPRID /* no */
#endif /* !CALC_HAVE_GETPRID_H */

View File

@@ -1,14 +0,0 @@
/*
* DO NOT EDIT -- generated by the Makefile
*/
#if !defined(CALC_HAVE_GETSID_H)
#define CALC_HAVE_GETSID_H
/* do we have or want getsid()? */
#undef HAVE_GETSID /* no */
#endif /* !CALC_HAVE_GETSID_H */

View File

@@ -1,14 +0,0 @@
/*
* DO NOT EDIT -- generated by the Makefile
*/
#if !defined(CALC_HAVE_GETTIME_H)
#define CALC_HAVE_GETTIME_H
/* do we have or want clock_gettime()? */
#undef HAVE_GETTIME /* no */
#endif /* !CALC_HAVE_GETTIME_H */

View File

@@ -1,14 +0,0 @@
/*
* DO NOT EDIT -- generated by the Makefile
*/
#if !defined(CALC_HAVE_MEMMV_H)
#define CALC_HAVE_MEMMV_H
/* do we have or want memmove()? */
#define HAVE_MEMMOVE /* yes */
#endif /* !CALC_HAVE_MEMMV_H */

View File

@@ -1,14 +0,0 @@
/*
* DO NOT EDIT -- generated by the Makefile
*/
#if !defined(CALC_HAVE_NEWSTR_H)
#define CALC_HAVE_NEWSTR_H
/* do we have or want memcpy(), memset() & strchr()? */
#define HAVE_NEWSTR /* yes */
#endif /* !CALC_HAVE_NEWSTR_H */

View File

@@ -1,14 +0,0 @@
/*
* DO NOT EDIT -- generated by the Makefile
*/
#if !defined(CALC_HAVE_OFFSCL_H)
#define CALC_HAVE_OFFSCL_H
#undef HAVE_OFF_T_SCALAR
#define HAVE_OFF_T_SCALAR /* off_t is a simple value */
#endif /* !CALC_HAVE_OFFSCL_H */

View File

@@ -1,14 +0,0 @@
/*
* DO NOT EDIT -- generated by the Makefile
*/
#if !defined(CALC_HAVE_POSSCL_H)
#define CALC_HAVE_POSSCL_H
#undef HAVE_FILEPOS_SCALAR
#define HAVE_FILEPOS_SCALAR /* FILEPOS is a simple value */
#endif /* !CALC_HAVE_POSSCL_H */

View File

@@ -1,14 +0,0 @@
/*
* DO NOT EDIT -- generated by the Makefile
*/
#if !defined(CALC_HAVE_RUSAGE_H)
#define CALC_HAVE_RUSAGE_H
/* do we have or want getrusage()? */
#undef HAVE_GETRUSAGE /* no */
#endif /* !CALC_HAVE_RUSAGE_H */

View File

@@ -1,14 +0,0 @@
/*
* DO NOT EDIT -- generated by the Makefile
*/
#if !defined(CALC_HAVE_STDLIB_H)
#define CALC_HAVE_STDLIB_H
/* do we have <stdlib.h>? */
#define HAVE_STDLIB_H /* yes */
#endif /* !CALC_HAVE_STDLIB_H */

View File

@@ -1,14 +0,0 @@
/*
* DO NOT EDIT -- generated by the Makefile
*/
#if !defined(CALC_HAVE_STRDUP_H)
#define CALC_HAVE_STRDUP_H
/* do we have or want getstrdup()? */
#define HAVE_STRDUP /* yes */
#endif /* !CALC_HAVE_STRDUP_H */

View File

@@ -1,14 +0,0 @@
/*
* DO NOT EDIT -- generated by the Makefile
*/
#if !defined(CALC_HAVE_STRING_H)
#define CALC_HAVE_STRING_H
/* do we have <string.h>? */
#define HAVE_STRING_H /* yes */
#endif /* !CALC_HAVE_STRING_H */

View File

@@ -1,17 +0,0 @@
/*
* DO NOT EDIT -- generated by the Makefile
*/
#if !defined(CALC_HAVE_TIMES_H)
#define CALC_HAVE_TIMES_H
/* do we have <times.h>? */
#undef HAVE_TIMES_H /* no */
#undef HAVE_SYS_TIMES_H /* no */
#define HAVE_TIME_H /* yes */
#undef HAVE_SYS_TIME_H /* no */
#endif /* !CALC_HAVE_TIMES_H */

View File

@@ -1,14 +0,0 @@
/*
* DO NOT EDIT -- generated by the Makefile
*/
#if !defined(CALC_HAVE_UID_T_H)
#define CALC_HAVE_UID_T_H
/* do we have or want uid_t? */
#undef HAVE_UID_T /* no */
#endif /* !CALC_HAVE_UID_T_H */

View File

@@ -1,14 +0,0 @@
/*
* DO NOT EDIT -- generated by the Makefile
*/
#if !defined(CALC_HAVE_UNISTD_H)
#define CALC_HAVE_UNISTD_H
/* do we have <unistd.h>? */
#undef HAVE_UNISTD_H /* no */
#endif /* !CALC_HAVE_UNISTD_H */

View File

@@ -1,16 +0,0 @@
/*
* DO NOT EDIT -- generated by the Makefile
*/
#if !defined(CALC_HAVE_UNUSED_H)
#define CALC_HAVE_UNUSED_H
/* do we have/want the unused attribute? */
#define HAVE_UNUSED /* yes */
#undef UNUSED
#define UNUSED __attribute__((unused)) /* yes */
#endif /* !CALC_HAVE_UNUSED_H */

View File

@@ -1,14 +0,0 @@
/*
* DO NOT EDIT -- generated by the Makefile
*/
#if !defined(CALC_HAVE_URANDOM_H)
#define CALC_HAVE_URANDOM_H
/* do we have /dev/urandom? */
#undef HAVE_URANDOM_H /* no */
#endif /* !CALC_HAVE_URANDOM_H */

View File

@@ -1,14 +0,0 @@
/*
* DO NOT EDIT -- generated by the Makefile
*/
#if !defined(CALC_HAVE_USTAT_H)
#define CALC_HAVE_USTAT_H
/* do we have or want ustat()? */
#undef HAVE_USTAT /* no */
#endif /* !CALC_HAVE_USTAT_H */

View File

@@ -1,34 +0,0 @@
/*
* DO NOT EDIT -- generated by the Makefile
*/
#if !defined(__LONGBITS_H__)
#define __LONGBITS_H__
#undef LONG_BITS
#define LONG_BITS 32 /* bit length of a long */
/* size of long was forced */
typedef unsigned char USB8; /* unsigned 8 bits */
typedef signed char SB8; /* signed 8 bits */
typedef unsigned short USB16; /* unsigned 16 bits */
typedef short SB16; /* signed 16 bits */
typedef unsigned long USB32; /* unsigned 32 bits */
typedef long SB32; /* signed 32 bits */
#undef HAVE_B64
#define HAVE_B64 /* have USB64 and SB64 types */
typedef unsigned long long USB64; /* unsigned 64 bits */
typedef long long SB64; /* signed 64 bits */
/* how to form 64 bit constants */
#define U(x) x ## ULL
#define L(x) x ## LL
#endif /* !__LONGBITS_H__ */

View File

@@ -1,23 +0,0 @@
/*
* DO NOT EDIT -- generated by the Makefile
*/
#if !defined(__TERMINAL_H__)
#define __TERMINAL_H__
/* determine the type of terminal interface */
#if !defined(USE_TERMIOS)
#if !defined(USE_TERMIO)
#if !defined(USE_SGTTY)
/* windoz, use none of these modes */
#undef USE_TERMIOS /* <termios.h> */
#undef USE_TERMIO /* <termio.h> */
#undef USE_SGTTY /* <sys/ioctl.h> */
#endif
#endif
#endif
#endif /* !__TERMINAL_H__ */