mirror of
https://github.com/lcn2/calc.git
synced 2025-08-16 01:03:29 +03:00
improved calc computation error codes message array
Changed calc_errno a global int variable so that is may be directly accessed by libcalc users. Further improve help files for help/errno, help/error, help/newerror, help/stoponerror and help/strerror by adding to documentation of the calc error code system as well as libcalc interface where applicable. Changed #define E_USERDEF to #define E__USERDEF. Removed use of E_USERDEF, E__BASE, E__COUNT, and E__HIGHEST from custom/c_sysinfo because the c_sysinfo is just a demo and this will simplify the custom/Makefile. The include file calcerr.h is now the errsym.h include file. The calcerr.tbl has been replaced by errtbl.c and errtbl.h. The calcerr_c.awk, calcerr_c.sed, calcerr_h.awk, and calcerr_h.sed files are now obsolete and have been removed. The calcerr.c and calcerr.h now obsolete and are no longer built. The calc computation error codes, symbols and messages are now in a error_table[] array of struct errtbl. An E_STRING is a string corresponds to an error code #define. For example, the E_STRING for the calc error E_STRCAT, is the string "E_STRING". An E_STRING must now match the regular expression: "^E_[A-Z0-9_]+$". The old array error_table[] of error message strings has been replaced by a new error_table[] array of struct errtbl. The struct errtbl array holds calc errnum error codes, the related E_STRING symbol as a string, and the original related error message. To add new computation error codes, add them near the bottom of the error_table[] array, just before the NULL entry. The ./errcode utility, when run, will verify the consistency of the error_table[] array. The Makefile uses ./errcode -e to generate the contents of help/errorcodes file. The help errorcodes now prints information from the new cstruct errtbl error_table[] array. The help/errorcodes.hdr and help/errorcodes.sed files are now obsolete and have been removed. The Makefile uses ./errcode -d to generate the contents of the errsym.h include file. Updated .gitignore and trailblank to support the above changes.
This commit is contained in:
152
Makefile
152
Makefile
@@ -127,7 +127,7 @@ V=@:
|
||||
#
|
||||
LIBSRC= addop.c assocfunc.c blkcpy.c block.c byteswap.c \
|
||||
codegen.c comfunc.c commath.c config.c const.c custom.c \
|
||||
file.c func.c hash.c help.c hist.c input.c jump.c label.c \
|
||||
errtbl.c file.c func.c hash.c help.c hist.c input.c jump.c label.c \
|
||||
lib_calc.c lib_util.c listfunc.c matfunc.c math_error.c \
|
||||
obj.c opcodes.c pix.c poly.c prime.c qfunc.c qio.c \
|
||||
qmath.c qmod.c qtrans.c quickhash.c seed.c sha1.c size.c \
|
||||
@@ -136,12 +136,12 @@ LIBSRC= addop.c assocfunc.c blkcpy.c block.c byteswap.c \
|
||||
|
||||
# the object files which are built into a math link library
|
||||
#
|
||||
# There MUST be a .o for every .c in LIBSRC plus calcerr.o
|
||||
# There MUST be a .o for every .c in LIBSRC
|
||||
# which is built via this Makefile.
|
||||
#
|
||||
LIBOBJS= addop.o assocfunc.o blkcpy.o block.o byteswap.o calcerr.o \
|
||||
LIBOBJS= addop.o assocfunc.o blkcpy.o block.o byteswap.o \
|
||||
codegen.o comfunc.o commath.o config.o const.o custom.o \
|
||||
file.o func.o hash.o help.o hist.o input.o jump.o label.o \
|
||||
errtbl.o file.o func.o hash.o help.o hist.o input.o jump.o label.o \
|
||||
lib_calc.o lib_util.o listfunc.o matfunc.o math_error.o \
|
||||
obj.o opcodes.o pix.o poly.o prime.o qfunc.o qio.o \
|
||||
qmath.o qmod.o qtrans.o quickhash.o seed.o sha1.o size.o \
|
||||
@@ -163,14 +163,14 @@ CALCOBJS= calc.o
|
||||
# these .h files are needed to build the math link library
|
||||
#
|
||||
LIB_H_SRC= alloc.h banned.h blkcpy.h block.h bool.h byteswap.h calc.h \
|
||||
cmath.h config.h custom.h decl.h file.h func.h hash.h hist.h \
|
||||
int.h jump.h label.h lib_util.h lib_calc.h nametype.h \
|
||||
cmath.h config.h custom.h decl.h errtbl.h file.h func.h hash.h \
|
||||
hist.h int.h jump.h label.h lib_util.h lib_calc.h nametype.h \
|
||||
opcodes.h prime.h qmath.h sha1.h str.h strl.h \
|
||||
symbol.h token.h value.h zmath.h zrand.h zrandom.h attribute.h
|
||||
|
||||
# we build these .h files during the make
|
||||
#
|
||||
BUILD_H_SRC= align32.h args.h calcerr.h conf.h endian_calc.h \
|
||||
BUILD_H_SRC= align32.h args.h conf.h endian_calc.h errsym.h \
|
||||
fposval.h have_ban_pragma.h have_const.h have_fgetsetpos.h \
|
||||
have_fpos_pos.h have_getpgid.h have_getprid.h have_getsid.h \
|
||||
have_gettime.h have_memmv.h have_newstr.h have_offscl.h \
|
||||
@@ -184,7 +184,7 @@ BUILD_H_SRC= align32.h args.h calcerr.h conf.h endian_calc.h \
|
||||
|
||||
# we build these .c files during the make
|
||||
#
|
||||
BUILD_C_SRC= calcerr.c
|
||||
BUILD_C_SRC=
|
||||
|
||||
# these .c files may be used in the process of building BUILD_H_SRC
|
||||
#
|
||||
@@ -201,8 +201,7 @@ UTIL_C_SRC= align32.c endian.c longbits.c have_newstr.c have_uid_t.c \
|
||||
# these awk and sed tools are used in the process of building BUILD_H_SRC
|
||||
# and BUILD_C_SRC
|
||||
#
|
||||
UTIL_MISC_SRC= calcerr_h.sed calcerr_h.awk calcerr_c.sed calcerr_c.awk \
|
||||
calcerr.tbl check.awk fposval.h.def
|
||||
UTIL_MISC_SRC= fposval.h.def
|
||||
|
||||
# these .o files may get built in the process of building BUILD_H_SRC
|
||||
#
|
||||
@@ -293,7 +292,7 @@ CALC_STATIC_LIBS= libcalc.a libcustcalc.a
|
||||
CALC_DYNAMIC_LIBS= libcalc${LIB_EXT_VERSION} libcustcalc${LIB_EXT_VERSION}
|
||||
SYM_DYNAMIC_LIBS= libcalc${LIB_EXT} libcustcalc${LIB_EXT} \
|
||||
libcalc${LIB_EXT_VER} libcustcalc${LIB_EXT_VER}
|
||||
EARLY_TARGETS= hsrc .hsrc custom/.all custom/Makefile
|
||||
EARLY_TARGETS= errsym.h hsrc .hsrc custom/.all custom/Makefile
|
||||
|
||||
# list of sample programs that need to be built to satisfy sample rule
|
||||
#
|
||||
@@ -2172,25 +2171,10 @@ args.h: have_stdvs.c have_varvs.c have_string.h have_unistd.h \
|
||||
${TRUE}; \
|
||||
fi
|
||||
|
||||
calcerr.h: calcerr.tbl calcerr_h.sed calcerr_h.awk ${MK_SET}
|
||||
${Q} ${RM} -f calerr.h
|
||||
errsym.h: errcode${EXT}
|
||||
${Q} ${RM} -f $@
|
||||
${H} echo 'forming $@'
|
||||
${Q} echo '/*' > $@
|
||||
${Q} echo ' * DO NOT EDIT' >> $@
|
||||
${Q} echo ' *' >> $@
|
||||
${Q} echo ' * generated by calcerr.tbl via Makefile' >> $@
|
||||
${Q} echo ' */' >> $@
|
||||
${Q} echo '' >> $@
|
||||
${Q} echo '' >> $@
|
||||
${Q} echo '#if !defined(CALC_CALCERR_H)' >> $@
|
||||
${Q} echo '#define CALC_CALCERR_H' >> $@
|
||||
${Q} echo '' >> $@
|
||||
${Q} echo '' >> $@
|
||||
${Q} ${SED} -f calcerr_h.sed < calcerr.tbl | \
|
||||
${AWK} -f calcerr_h.awk >> $@
|
||||
${Q} echo '' >> $@
|
||||
${Q} echo '' >> $@
|
||||
${Q} echo '#endif /* !CALC_CALCERR_H */' >> $@
|
||||
./errcode${EXT} -d > $@
|
||||
${H} echo '$@ formed'
|
||||
-@if [ -z "${Q}" ]; then \
|
||||
echo ''; \
|
||||
@@ -2202,27 +2186,9 @@ calcerr.h: calcerr.tbl calcerr_h.sed calcerr_h.awk ${MK_SET}
|
||||
${TRUE}; \
|
||||
fi
|
||||
|
||||
calcerr.c: calcerr.tbl calcerr_c.sed calcerr_c.awk ${MK_SET}
|
||||
${Q} ${RM} -f calerr.c
|
||||
${H} echo 'forming $@'
|
||||
${Q} echo '/*' > $@
|
||||
${Q} echo ' * DO NOT EDIT' >> $@
|
||||
${Q} echo ' *' >> $@
|
||||
${Q} echo ' * generated by calcerr.tbl via Makefile' >> $@
|
||||
${Q} echo ' */' >> $@
|
||||
${Q} echo '' >> $@
|
||||
${Q} ${SED} -f calcerr_c.sed < calcerr.tbl | \
|
||||
${AWK} -f calcerr_c.awk >> $@
|
||||
${H} echo '$@ formed'
|
||||
-@if [ -z "${Q}" ]; then \
|
||||
echo ''; \
|
||||
echo '=-=-= start of $@ =-=-='; \
|
||||
${CAT} $@; \
|
||||
echo '=-=-= end of $@ =-=-='; \
|
||||
echo ''; \
|
||||
else \
|
||||
${TRUE}; \
|
||||
fi
|
||||
errcode${EXT}: errtbl.c errtbl.h have_const.h ${MK_SET}
|
||||
${RM} -f $@
|
||||
${LCC} ${ICFLAGS} ${ILDFLAGS} -DERRCODE_SRC errtbl.c -o $@
|
||||
|
||||
have_unused.h: have_unused.c have_stdlib.h have_ban_pragma.h \
|
||||
${MK_SET}
|
||||
@@ -2467,7 +2433,7 @@ help/builtin: help/Makefile \
|
||||
${V} echo '=-=-=-=-= ${MAKE_FILE} end of $@ rule =-=-=-=-='
|
||||
|
||||
help/errorcodes: help/Makefile \
|
||||
calcerr.h help/errorcodes.hdr help/errorcodes.sed
|
||||
errcode${EXT}
|
||||
${V} echo '=-=-=-=-= ${MAKE_FILE} start of $@ rule =-=-=-=-='
|
||||
${V} echo '=-=-=-=-= Invoking builtin rule for help =-=-=-=-='
|
||||
${RM} -f $@
|
||||
@@ -3334,6 +3300,7 @@ olduninstall:
|
||||
${RM} -f inst_files
|
||||
${RM} -f ${CALC_INCDIR}/calcerr.c
|
||||
${RM} -f ${CALC_INCDIR}/have_fgetsetpos.h
|
||||
${RM} -f ${CALC_INCDIR}/calcerr.h
|
||||
${RM} -f -v Makefile.simple Makefile.simple.bak
|
||||
${RM} -f -v custom/Makefile.simple custom/Makefile.simple.bak
|
||||
|
||||
@@ -3369,6 +3336,7 @@ clean:
|
||||
${RM} -f endian.h stdarg.h libcalcerr.a cal/obj help/obj
|
||||
${RM} -f have_vs.c std_arg.h try_stdarg.c fnvhash.c
|
||||
${RM} -f have_malloc.h math_error.h string.h string.c
|
||||
${RM} -f calcerr.c calcerr.h calcerr.o
|
||||
${V} echo '=-=-=-=-= ${MAKE_FILE} end of $@ rule =-=-=-=-='
|
||||
|
||||
clobber: clean
|
||||
@@ -4023,12 +3991,12 @@ addop.o: block.h
|
||||
addop.o: bool.h
|
||||
addop.o: byteswap.h
|
||||
addop.o: calc.h
|
||||
addop.o: calcerr.h
|
||||
addop.o: charbit.h
|
||||
addop.o: cmath.h
|
||||
addop.o: config.h
|
||||
addop.o: decl.h
|
||||
addop.o: endian_calc.h
|
||||
addop.o: errsym.h
|
||||
addop.o: func.h
|
||||
addop.o: hash.h
|
||||
addop.o: have_ban_pragma.h
|
||||
@@ -4064,12 +4032,12 @@ assocfunc.o: banned.h
|
||||
assocfunc.o: block.h
|
||||
assocfunc.o: bool.h
|
||||
assocfunc.o: byteswap.h
|
||||
assocfunc.o: calcerr.h
|
||||
assocfunc.o: charbit.h
|
||||
assocfunc.o: cmath.h
|
||||
assocfunc.o: config.h
|
||||
assocfunc.o: decl.h
|
||||
assocfunc.o: endian_calc.h
|
||||
assocfunc.o: errsym.h
|
||||
assocfunc.o: hash.h
|
||||
assocfunc.o: have_ban_pragma.h
|
||||
assocfunc.o: have_const.h
|
||||
@@ -4095,12 +4063,12 @@ blkcpy.o: block.h
|
||||
blkcpy.o: bool.h
|
||||
blkcpy.o: byteswap.h
|
||||
blkcpy.o: calc.h
|
||||
blkcpy.o: calcerr.h
|
||||
blkcpy.o: charbit.h
|
||||
blkcpy.o: cmath.h
|
||||
blkcpy.o: config.h
|
||||
blkcpy.o: decl.h
|
||||
blkcpy.o: endian_calc.h
|
||||
blkcpy.o: errsym.h
|
||||
blkcpy.o: file.h
|
||||
blkcpy.o: hash.h
|
||||
blkcpy.o: have_ban_pragma.h
|
||||
@@ -4126,12 +4094,12 @@ block.o: block.c
|
||||
block.o: block.h
|
||||
block.o: bool.h
|
||||
block.o: byteswap.h
|
||||
block.o: calcerr.h
|
||||
block.o: charbit.h
|
||||
block.o: cmath.h
|
||||
block.o: config.h
|
||||
block.o: decl.h
|
||||
block.o: endian_calc.h
|
||||
block.o: errsym.h
|
||||
block.o: hash.h
|
||||
block.o: have_ban_pragma.h
|
||||
block.o: have_const.h
|
||||
@@ -4178,7 +4146,6 @@ calc.o: bool.h
|
||||
calc.o: byteswap.h
|
||||
calc.o: calc.c
|
||||
calc.o: calc.h
|
||||
calc.o: calcerr.h
|
||||
calc.o: charbit.h
|
||||
calc.o: cmath.h
|
||||
calc.o: conf.h
|
||||
@@ -4186,6 +4153,7 @@ calc.o: config.h
|
||||
calc.o: custom.h
|
||||
calc.o: decl.h
|
||||
calc.o: endian_calc.h
|
||||
calc.o: errsym.h
|
||||
calc.o: func.h
|
||||
calc.o: hash.h
|
||||
calc.o: have_ban_pragma.h
|
||||
@@ -4216,11 +4184,6 @@ calc.o: symbol.h
|
||||
calc.o: token.h
|
||||
calc.o: value.h
|
||||
calc.o: zmath.h
|
||||
calcerr.o: banned.h
|
||||
calcerr.o: calcerr.c
|
||||
calcerr.o: calcerr.h
|
||||
calcerr.o: have_ban_pragma.h
|
||||
calcerr.o: have_const.h
|
||||
charbit.o: banned.h
|
||||
charbit.o: charbit.c
|
||||
charbit.o: have_ban_pragma.h
|
||||
@@ -4239,7 +4202,6 @@ codegen.o: block.h
|
||||
codegen.o: bool.h
|
||||
codegen.o: byteswap.h
|
||||
codegen.o: calc.h
|
||||
codegen.o: calcerr.h
|
||||
codegen.o: charbit.h
|
||||
codegen.o: cmath.h
|
||||
codegen.o: codegen.c
|
||||
@@ -4247,6 +4209,7 @@ codegen.o: conf.h
|
||||
codegen.o: config.h
|
||||
codegen.o: decl.h
|
||||
codegen.o: endian_calc.h
|
||||
codegen.o: errsym.h
|
||||
codegen.o: func.h
|
||||
codegen.o: hash.h
|
||||
codegen.o: have_ban_pragma.h
|
||||
@@ -4324,7 +4287,6 @@ config.o: block.h
|
||||
config.o: bool.h
|
||||
config.o: byteswap.h
|
||||
config.o: calc.h
|
||||
config.o: calcerr.h
|
||||
config.o: charbit.h
|
||||
config.o: cmath.h
|
||||
config.o: config.c
|
||||
@@ -4332,6 +4294,7 @@ config.o: config.h
|
||||
config.o: custom.h
|
||||
config.o: decl.h
|
||||
config.o: endian_calc.h
|
||||
config.o: errsym.h
|
||||
config.o: hash.h
|
||||
config.o: have_ban_pragma.h
|
||||
config.o: have_const.h
|
||||
@@ -4362,13 +4325,13 @@ const.o: block.h
|
||||
const.o: bool.h
|
||||
const.o: byteswap.h
|
||||
const.o: calc.h
|
||||
const.o: calcerr.h
|
||||
const.o: charbit.h
|
||||
const.o: cmath.h
|
||||
const.o: config.h
|
||||
const.o: const.c
|
||||
const.o: decl.h
|
||||
const.o: endian_calc.h
|
||||
const.o: errsym.h
|
||||
const.o: hash.h
|
||||
const.o: have_ban_pragma.h
|
||||
const.o: have_const.h
|
||||
@@ -4392,7 +4355,6 @@ custom.o: block.h
|
||||
custom.o: bool.h
|
||||
custom.o: byteswap.h
|
||||
custom.o: calc.h
|
||||
custom.o: calcerr.h
|
||||
custom.o: charbit.h
|
||||
custom.o: cmath.h
|
||||
custom.o: config.h
|
||||
@@ -4400,6 +4362,7 @@ custom.o: custom.c
|
||||
custom.o: custom.h
|
||||
custom.o: decl.h
|
||||
custom.o: endian_calc.h
|
||||
custom.o: errsym.h
|
||||
custom.o: hash.h
|
||||
custom.o: have_ban_pragma.h
|
||||
custom.o: have_const.h
|
||||
@@ -4421,6 +4384,10 @@ endian.o: endian.c
|
||||
endian.o: have_ban_pragma.h
|
||||
endian.o: have_stdlib.h
|
||||
endian.o: have_unistd.h
|
||||
errtbl.o: decl.h
|
||||
errtbl.o: errtbl.c
|
||||
errtbl.o: errtbl.h
|
||||
errtbl.o: have_const.h
|
||||
file.o: alloc.h
|
||||
file.o: attribute.h
|
||||
file.o: banned.h
|
||||
@@ -4428,12 +4395,12 @@ file.o: block.h
|
||||
file.o: bool.h
|
||||
file.o: byteswap.h
|
||||
file.o: calc.h
|
||||
file.o: calcerr.h
|
||||
file.o: charbit.h
|
||||
file.o: cmath.h
|
||||
file.o: config.h
|
||||
file.o: decl.h
|
||||
file.o: endian_calc.h
|
||||
file.o: errsym.h
|
||||
file.o: file.c
|
||||
file.o: file.h
|
||||
file.o: fposval.h
|
||||
@@ -4490,13 +4457,14 @@ func.o: block.h
|
||||
func.o: bool.h
|
||||
func.o: byteswap.h
|
||||
func.o: calc.h
|
||||
func.o: calcerr.h
|
||||
func.o: charbit.h
|
||||
func.o: cmath.h
|
||||
func.o: config.h
|
||||
func.o: custom.h
|
||||
func.o: decl.h
|
||||
func.o: endian_calc.h
|
||||
func.o: errsym.h
|
||||
func.o: errtbl.h
|
||||
func.o: file.h
|
||||
func.o: func.c
|
||||
func.o: func.h
|
||||
@@ -4539,12 +4507,12 @@ hash.o: block.h
|
||||
hash.o: bool.h
|
||||
hash.o: byteswap.h
|
||||
hash.o: calc.h
|
||||
hash.o: calcerr.h
|
||||
hash.o: charbit.h
|
||||
hash.o: cmath.h
|
||||
hash.o: config.h
|
||||
hash.o: decl.h
|
||||
hash.o: endian_calc.h
|
||||
hash.o: errsym.h
|
||||
hash.o: hash.c
|
||||
hash.o: hash.h
|
||||
hash.o: have_ban_pragma.h
|
||||
@@ -4667,13 +4635,13 @@ help.o: block.h
|
||||
help.o: bool.h
|
||||
help.o: byteswap.h
|
||||
help.o: calc.h
|
||||
help.o: calcerr.h
|
||||
help.o: charbit.h
|
||||
help.o: cmath.h
|
||||
help.o: conf.h
|
||||
help.o: config.h
|
||||
help.o: decl.h
|
||||
help.o: endian_calc.h
|
||||
help.o: errsym.h
|
||||
help.o: hash.h
|
||||
help.o: have_ban_pragma.h
|
||||
help.o: have_const.h
|
||||
@@ -4700,12 +4668,12 @@ hist.o: block.h
|
||||
hist.o: bool.h
|
||||
hist.o: byteswap.h
|
||||
hist.o: calc.h
|
||||
hist.o: calcerr.h
|
||||
hist.o: charbit.h
|
||||
hist.o: cmath.h
|
||||
hist.o: config.h
|
||||
hist.o: decl.h
|
||||
hist.o: endian_calc.h
|
||||
hist.o: errsym.h
|
||||
hist.o: hash.h
|
||||
hist.o: have_ban_pragma.h
|
||||
hist.o: have_const.h
|
||||
@@ -4738,13 +4706,13 @@ input.o: block.h
|
||||
input.o: bool.h
|
||||
input.o: byteswap.h
|
||||
input.o: calc.h
|
||||
input.o: calcerr.h
|
||||
input.o: charbit.h
|
||||
input.o: cmath.h
|
||||
input.o: conf.h
|
||||
input.o: config.h
|
||||
input.o: decl.h
|
||||
input.o: endian_calc.h
|
||||
input.o: errsym.h
|
||||
input.o: hash.h
|
||||
input.o: have_ban_pragma.h
|
||||
input.o: have_const.h
|
||||
@@ -4780,12 +4748,12 @@ label.o: block.h
|
||||
label.o: bool.h
|
||||
label.o: byteswap.h
|
||||
label.o: calc.h
|
||||
label.o: calcerr.h
|
||||
label.o: charbit.h
|
||||
label.o: cmath.h
|
||||
label.o: config.h
|
||||
label.o: decl.h
|
||||
label.o: endian_calc.h
|
||||
label.o: errsym.h
|
||||
label.o: func.h
|
||||
label.o: hash.h
|
||||
label.o: have_ban_pragma.h
|
||||
@@ -4814,7 +4782,6 @@ lib_calc.o: block.h
|
||||
lib_calc.o: bool.h
|
||||
lib_calc.o: byteswap.h
|
||||
lib_calc.o: calc.h
|
||||
lib_calc.o: calcerr.h
|
||||
lib_calc.o: charbit.h
|
||||
lib_calc.o: cmath.h
|
||||
lib_calc.o: conf.h
|
||||
@@ -4822,6 +4789,7 @@ lib_calc.o: config.h
|
||||
lib_calc.o: custom.h
|
||||
lib_calc.o: decl.h
|
||||
lib_calc.o: endian_calc.h
|
||||
lib_calc.o: errsym.h
|
||||
lib_calc.o: func.h
|
||||
lib_calc.o: hash.h
|
||||
lib_calc.o: have_ban_pragma.h
|
||||
@@ -4877,12 +4845,12 @@ listfunc.o: banned.h
|
||||
listfunc.o: block.h
|
||||
listfunc.o: bool.h
|
||||
listfunc.o: byteswap.h
|
||||
listfunc.o: calcerr.h
|
||||
listfunc.o: charbit.h
|
||||
listfunc.o: cmath.h
|
||||
listfunc.o: config.h
|
||||
listfunc.o: decl.h
|
||||
listfunc.o: endian_calc.h
|
||||
listfunc.o: errsym.h
|
||||
listfunc.o: hash.h
|
||||
listfunc.o: have_ban_pragma.h
|
||||
listfunc.o: have_const.h
|
||||
@@ -4914,12 +4882,12 @@ matfunc.o: banned.h
|
||||
matfunc.o: block.h
|
||||
matfunc.o: bool.h
|
||||
matfunc.o: byteswap.h
|
||||
matfunc.o: calcerr.h
|
||||
matfunc.o: charbit.h
|
||||
matfunc.o: cmath.h
|
||||
matfunc.o: config.h
|
||||
matfunc.o: decl.h
|
||||
matfunc.o: endian_calc.h
|
||||
matfunc.o: errsym.h
|
||||
matfunc.o: hash.h
|
||||
matfunc.o: have_ban_pragma.h
|
||||
matfunc.o: have_const.h
|
||||
@@ -4947,12 +4915,12 @@ math_error.o: block.h
|
||||
math_error.o: bool.h
|
||||
math_error.o: byteswap.h
|
||||
math_error.o: calc.h
|
||||
math_error.o: calcerr.h
|
||||
math_error.o: charbit.h
|
||||
math_error.o: cmath.h
|
||||
math_error.o: config.h
|
||||
math_error.o: decl.h
|
||||
math_error.o: endian_calc.h
|
||||
math_error.o: errsym.h
|
||||
math_error.o: hash.h
|
||||
math_error.o: have_ban_pragma.h
|
||||
math_error.o: have_const.h
|
||||
@@ -4978,12 +4946,12 @@ obj.o: block.h
|
||||
obj.o: bool.h
|
||||
obj.o: byteswap.h
|
||||
obj.o: calc.h
|
||||
obj.o: calcerr.h
|
||||
obj.o: charbit.h
|
||||
obj.o: cmath.h
|
||||
obj.o: config.h
|
||||
obj.o: decl.h
|
||||
obj.o: endian_calc.h
|
||||
obj.o: errsym.h
|
||||
obj.o: func.h
|
||||
obj.o: hash.h
|
||||
obj.o: have_ban_pragma.h
|
||||
@@ -5015,13 +4983,13 @@ opcodes.o: block.h
|
||||
opcodes.o: bool.h
|
||||
opcodes.o: byteswap.h
|
||||
opcodes.o: calc.h
|
||||
opcodes.o: calcerr.h
|
||||
opcodes.o: charbit.h
|
||||
opcodes.o: cmath.h
|
||||
opcodes.o: config.h
|
||||
opcodes.o: custom.h
|
||||
opcodes.o: decl.h
|
||||
opcodes.o: endian_calc.h
|
||||
opcodes.o: errsym.h
|
||||
opcodes.o: file.h
|
||||
opcodes.o: func.h
|
||||
opcodes.o: hash.h
|
||||
@@ -5077,12 +5045,12 @@ poly.o: banned.h
|
||||
poly.o: block.h
|
||||
poly.o: bool.h
|
||||
poly.o: byteswap.h
|
||||
poly.o: calcerr.h
|
||||
poly.o: charbit.h
|
||||
poly.o: cmath.h
|
||||
poly.o: config.h
|
||||
poly.o: decl.h
|
||||
poly.o: endian_calc.h
|
||||
poly.o: errsym.h
|
||||
poly.o: hash.h
|
||||
poly.o: have_ban_pragma.h
|
||||
poly.o: have_const.h
|
||||
@@ -5239,12 +5207,12 @@ quickhash.o: banned.h
|
||||
quickhash.o: block.h
|
||||
quickhash.o: bool.h
|
||||
quickhash.o: byteswap.h
|
||||
quickhash.o: calcerr.h
|
||||
quickhash.o: charbit.h
|
||||
quickhash.o: cmath.h
|
||||
quickhash.o: config.h
|
||||
quickhash.o: decl.h
|
||||
quickhash.o: endian_calc.h
|
||||
quickhash.o: errsym.h
|
||||
quickhash.o: hash.h
|
||||
quickhash.o: have_ban_pragma.h
|
||||
quickhash.o: have_const.h
|
||||
@@ -5271,12 +5239,12 @@ sample_many.o: block.h
|
||||
sample_many.o: bool.h
|
||||
sample_many.o: byteswap.h
|
||||
sample_many.o: calc.h
|
||||
sample_many.o: calcerr.h
|
||||
sample_many.o: charbit.h
|
||||
sample_many.o: cmath.h
|
||||
sample_many.o: config.h
|
||||
sample_many.o: decl.h
|
||||
sample_many.o: endian_calc.h
|
||||
sample_many.o: errsym.h
|
||||
sample_many.o: hash.h
|
||||
sample_many.o: have_ban_pragma.h
|
||||
sample_many.o: have_const.h
|
||||
@@ -5303,12 +5271,12 @@ sample_rand.o: block.h
|
||||
sample_rand.o: bool.h
|
||||
sample_rand.o: byteswap.h
|
||||
sample_rand.o: calc.h
|
||||
sample_rand.o: calcerr.h
|
||||
sample_rand.o: charbit.h
|
||||
sample_rand.o: cmath.h
|
||||
sample_rand.o: config.h
|
||||
sample_rand.o: decl.h
|
||||
sample_rand.o: endian_calc.h
|
||||
sample_rand.o: errsym.h
|
||||
sample_rand.o: hash.h
|
||||
sample_rand.o: have_ban_pragma.h
|
||||
sample_rand.o: have_const.h
|
||||
@@ -5371,12 +5339,12 @@ sha1.o: banned.h
|
||||
sha1.o: block.h
|
||||
sha1.o: bool.h
|
||||
sha1.o: byteswap.h
|
||||
sha1.o: calcerr.h
|
||||
sha1.o: charbit.h
|
||||
sha1.o: cmath.h
|
||||
sha1.o: config.h
|
||||
sha1.o: decl.h
|
||||
sha1.o: endian_calc.h
|
||||
sha1.o: errsym.h
|
||||
sha1.o: hash.h
|
||||
sha1.o: have_ban_pragma.h
|
||||
sha1.o: have_const.h
|
||||
@@ -5400,12 +5368,12 @@ size.o: banned.h
|
||||
size.o: block.h
|
||||
size.o: bool.h
|
||||
size.o: byteswap.h
|
||||
size.o: calcerr.h
|
||||
size.o: charbit.h
|
||||
size.o: cmath.h
|
||||
size.o: config.h
|
||||
size.o: decl.h
|
||||
size.o: endian_calc.h
|
||||
size.o: errsym.h
|
||||
size.o: hash.h
|
||||
size.o: have_ban_pragma.h
|
||||
size.o: have_const.h
|
||||
@@ -5432,12 +5400,12 @@ str.o: block.h
|
||||
str.o: bool.h
|
||||
str.o: byteswap.h
|
||||
str.o: calc.h
|
||||
str.o: calcerr.h
|
||||
str.o: charbit.h
|
||||
str.o: cmath.h
|
||||
str.o: config.h
|
||||
str.o: decl.h
|
||||
str.o: endian_calc.h
|
||||
str.o: errsym.h
|
||||
str.o: hash.h
|
||||
str.o: have_ban_pragma.h
|
||||
str.o: have_const.h
|
||||
@@ -5477,12 +5445,12 @@ symbol.o: block.h
|
||||
symbol.o: bool.h
|
||||
symbol.o: byteswap.h
|
||||
symbol.o: calc.h
|
||||
symbol.o: calcerr.h
|
||||
symbol.o: charbit.h
|
||||
symbol.o: cmath.h
|
||||
symbol.o: config.h
|
||||
symbol.o: decl.h
|
||||
symbol.o: endian_calc.h
|
||||
symbol.o: errsym.h
|
||||
symbol.o: func.h
|
||||
symbol.o: hash.h
|
||||
symbol.o: have_ban_pragma.h
|
||||
@@ -5513,12 +5481,12 @@ token.o: block.h
|
||||
token.o: bool.h
|
||||
token.o: byteswap.h
|
||||
token.o: calc.h
|
||||
token.o: calcerr.h
|
||||
token.o: charbit.h
|
||||
token.o: cmath.h
|
||||
token.o: config.h
|
||||
token.o: decl.h
|
||||
token.o: endian_calc.h
|
||||
token.o: errsym.h
|
||||
token.o: hash.h
|
||||
token.o: have_ban_pragma.h
|
||||
token.o: have_const.h
|
||||
@@ -5545,12 +5513,12 @@ value.o: block.h
|
||||
value.o: bool.h
|
||||
value.o: byteswap.h
|
||||
value.o: calc.h
|
||||
value.o: calcerr.h
|
||||
value.o: charbit.h
|
||||
value.o: cmath.h
|
||||
value.o: config.h
|
||||
value.o: decl.h
|
||||
value.o: endian_calc.h
|
||||
value.o: errsym.h
|
||||
value.o: file.h
|
||||
value.o: func.h
|
||||
value.o: hash.h
|
||||
@@ -5583,12 +5551,12 @@ version.o: block.h
|
||||
version.o: bool.h
|
||||
version.o: byteswap.h
|
||||
version.o: calc.h
|
||||
version.o: calcerr.h
|
||||
version.o: charbit.h
|
||||
version.o: cmath.h
|
||||
version.o: config.h
|
||||
version.o: decl.h
|
||||
version.o: endian_calc.h
|
||||
version.o: errsym.h
|
||||
version.o: hash.h
|
||||
version.o: have_ban_pragma.h
|
||||
version.o: have_const.h
|
||||
@@ -5724,12 +5692,12 @@ zprime.o: banned.h
|
||||
zprime.o: block.h
|
||||
zprime.o: bool.h
|
||||
zprime.o: byteswap.h
|
||||
zprime.o: calcerr.h
|
||||
zprime.o: charbit.h
|
||||
zprime.o: cmath.h
|
||||
zprime.o: config.h
|
||||
zprime.o: decl.h
|
||||
zprime.o: endian_calc.h
|
||||
zprime.o: errsym.h
|
||||
zprime.o: hash.h
|
||||
zprime.o: have_ban_pragma.h
|
||||
zprime.o: have_const.h
|
||||
@@ -5756,12 +5724,12 @@ zrand.o: banned.h
|
||||
zrand.o: block.h
|
||||
zrand.o: bool.h
|
||||
zrand.o: byteswap.h
|
||||
zrand.o: calcerr.h
|
||||
zrand.o: charbit.h
|
||||
zrand.o: cmath.h
|
||||
zrand.o: config.h
|
||||
zrand.o: decl.h
|
||||
zrand.o: endian_calc.h
|
||||
zrand.o: errsym.h
|
||||
zrand.o: hash.h
|
||||
zrand.o: have_ban_pragma.h
|
||||
zrand.o: have_const.h
|
||||
@@ -5787,12 +5755,12 @@ zrandom.o: banned.h
|
||||
zrandom.o: block.h
|
||||
zrandom.o: bool.h
|
||||
zrandom.o: byteswap.h
|
||||
zrandom.o: calcerr.h
|
||||
zrandom.o: charbit.h
|
||||
zrandom.o: cmath.h
|
||||
zrandom.o: config.h
|
||||
zrandom.o: decl.h
|
||||
zrandom.o: endian_calc.h
|
||||
zrandom.o: errsym.h
|
||||
zrandom.o: hash.h
|
||||
zrandom.o: have_ban_pragma.h
|
||||
zrandom.o: have_const.h
|
||||
|
Reference in New Issue
Block a user