Use makedoc output files which are generated but aren't included
I think these are accidental omissions, as these source files are listed to be chewed by makedoc, but the result is not included by any texinfo source file. Future work: Nothing in libc/reent/ which is processed by makedoc is included by reent.tex 2015-06-23 Jon Turney <jon.turney@dronecode.org.uk> * libc/stdlib/stdlib.tex: Include itoa and utoa, and add to menu. * libc/string/strings.tex: Include memrchr and rawmemchr, and add to menu. * libm/math/math.tex: Include exp10 and pow10, and add to menu. * libm/common/s_exp10.c: Improve one-line description. * libm/common/s_exp10.c: Ditto. Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
This commit is contained in:
parent
433aad912d
commit
a4dd7dd87c
@ -1,3 +1,12 @@
|
|||||||
|
2015-06-23 Jon Turney <jon.turney@dronecode.org.uk>
|
||||||
|
|
||||||
|
* libc/stdlib/stdlib.tex: Include itoa and utoa, and add to menu.
|
||||||
|
* libc/string/strings.tex: Include memrchr and rawmemchr, and add
|
||||||
|
to menu.
|
||||||
|
* libm/math/math.tex: Include exp10 and pow10, and add to menu.
|
||||||
|
* libm/common/s_exp10.c: Improve one-line description.
|
||||||
|
* libm/common/s_exp10.c: Ditto.
|
||||||
|
|
||||||
2015-06-23 Jon Turney <jon.turney@dronecode.org.uk>
|
2015-06-23 Jon Turney <jon.turney@dronecode.org.uk>
|
||||||
|
|
||||||
* libc/stdlib/Makefile.am (CHEWOUT_FILES): Remove $(MALLOCR).def.
|
* libc/stdlib/Makefile.am (CHEWOUT_FILES): Remove $(MALLOCR).def.
|
||||||
|
@ -23,6 +23,7 @@ The corresponding declarations are in the header file @file{stdlib.h}.
|
|||||||
* gcvt:: Format double or float as string
|
* gcvt:: Format double or float as string
|
||||||
* exit:: End program execution
|
* exit:: End program execution
|
||||||
* getenv:: Look up environment variable
|
* getenv:: Look up environment variable
|
||||||
|
* itoa:: Integer to string
|
||||||
* labs:: Long integer absolute value (magnitude)
|
* labs:: Long integer absolute value (magnitude)
|
||||||
* ldiv:: Divide two long integers
|
* ldiv:: Divide two long integers
|
||||||
* llabs:: Long long integer absolute value (magnitude)
|
* llabs:: Long long integer absolute value (magnitude)
|
||||||
@ -50,6 +51,7 @@ The corresponding declarations are in the header file @file{stdlib.h}.
|
|||||||
* wcstoul:: Wide string to unsigned long
|
* wcstoul:: Wide string to unsigned long
|
||||||
* wcstoull:: Wide string to unsigned long long
|
* wcstoull:: Wide string to unsigned long long
|
||||||
* system:: Execute command string
|
* system:: Execute command string
|
||||||
|
* utoa:: Unsigned integer to string
|
||||||
* wcstombs:: Minimal wide string to multibyte string converter
|
* wcstombs:: Minimal wide string to multibyte string converter
|
||||||
* wctomb:: Minimal wide character to multibyte converter
|
* wctomb:: Minimal wide character to multibyte converter
|
||||||
@end menu
|
@end menu
|
||||||
@ -105,6 +107,9 @@ The corresponding declarations are in the header file @file{stdlib.h}.
|
|||||||
@page
|
@page
|
||||||
@include stdlib/getenv.def
|
@include stdlib/getenv.def
|
||||||
|
|
||||||
|
@page
|
||||||
|
@include stdlib/itoa.def
|
||||||
|
|
||||||
@page
|
@page
|
||||||
@include stdlib/labs.def
|
@include stdlib/labs.def
|
||||||
|
|
||||||
@ -186,6 +191,9 @@ The corresponding declarations are in the header file @file{stdlib.h}.
|
|||||||
@page
|
@page
|
||||||
@include stdlib/system.def
|
@include stdlib/system.def
|
||||||
|
|
||||||
|
@page
|
||||||
|
@include stdlib/utoa.def
|
||||||
|
|
||||||
@page
|
@page
|
||||||
@include stdlib/wcstombs.def
|
@include stdlib/wcstombs.def
|
||||||
|
|
||||||
|
@ -17,7 +17,9 @@ managing areas of memory. The corresponding declarations are in
|
|||||||
* memmem:: Find memory segment
|
* memmem:: Find memory segment
|
||||||
* memmove:: Move possibly overlapping memory
|
* memmove:: Move possibly overlapping memory
|
||||||
* mempcpy:: Copy memory regions and locate end
|
* mempcpy:: Copy memory regions and locate end
|
||||||
|
* memrchr:: Reverse search for character in memory
|
||||||
* memset:: Set an area of memory
|
* memset:: Set an area of memory
|
||||||
|
* rawmemchr:: Find character in memory
|
||||||
* rindex:: Reverse search for character in string
|
* rindex:: Reverse search for character in string
|
||||||
* stpcpy:: Copy string returning a pointer to its end
|
* stpcpy:: Copy string returning a pointer to its end
|
||||||
* stpncpy:: Counted copy string returning a pointer to its end
|
* stpncpy:: Counted copy string returning a pointer to its end
|
||||||
@ -85,9 +87,15 @@ managing areas of memory. The corresponding declarations are in
|
|||||||
@page
|
@page
|
||||||
@include string/mempcpy.def
|
@include string/mempcpy.def
|
||||||
|
|
||||||
|
@page
|
||||||
|
@include string/memrchr.def
|
||||||
|
|
||||||
@page
|
@page
|
||||||
@include string/memset.def
|
@include string/memset.def
|
||||||
|
|
||||||
|
@page
|
||||||
|
@include string/rawmemchr.def
|
||||||
|
|
||||||
@page
|
@page
|
||||||
@include string/rindex.def
|
@include string/rindex.def
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
FUNCTION
|
FUNCTION
|
||||||
<<exp10>>, <<exp10f>>---exponential
|
<<exp10>>, <<exp10f>>---exponential, base 10
|
||||||
INDEX
|
INDEX
|
||||||
exp10
|
exp10
|
||||||
INDEX
|
INDEX
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
FUNCTION
|
FUNCTION
|
||||||
<<pow10>>, <<pow10f>>---exponential
|
<<pow10>>, <<pow10f>>---base 10 power functions
|
||||||
INDEX
|
INDEX
|
||||||
pow10
|
pow10
|
||||||
INDEX
|
INDEX
|
||||||
|
@ -51,6 +51,7 @@ machines---are available when you include @file{fastmath.h} instead of
|
|||||||
* cosh:: Hyperbolic cosine
|
* cosh:: Hyperbolic cosine
|
||||||
* erf:: Error function (erf, erfc)
|
* erf:: Error function (erf, erfc)
|
||||||
* exp:: Exponential, base e
|
* exp:: Exponential, base e
|
||||||
|
* exp10:: Exponential, base 10
|
||||||
* exp2:: Exponential, base 2
|
* exp2:: Exponential, base 2
|
||||||
* expm1:: Exponential, base e, of x - 1
|
* expm1:: Exponential, base e, of x - 1
|
||||||
* fabs:: Absolute value (magnitude)
|
* fabs:: Absolute value (magnitude)
|
||||||
@ -81,6 +82,7 @@ machines---are available when you include @file{fastmath.h} instead of
|
|||||||
* nearbyint:: Round to integer
|
* nearbyint:: Round to integer
|
||||||
* nextafter:: Get next representable number
|
* nextafter:: Get next representable number
|
||||||
* pow:: X to the power Y
|
* pow:: X to the power Y
|
||||||
|
* pow10:: 10 to the power X
|
||||||
* remainder:: remainder of X divided by Y
|
* remainder:: remainder of X divided by Y
|
||||||
* remquo:: Remainder and part of quotient
|
* remquo:: Remainder and part of quotient
|
||||||
* rint:: Round to integer
|
* rint:: Round to integer
|
||||||
@ -189,6 +191,8 @@ registered trademark of The IEEE.
|
|||||||
@page
|
@page
|
||||||
@include math/w_exp.def
|
@include math/w_exp.def
|
||||||
@page
|
@page
|
||||||
|
@include common/s_exp10.def
|
||||||
|
@page
|
||||||
@include math/w_exp2.def
|
@include math/w_exp2.def
|
||||||
@page
|
@page
|
||||||
@include common/s_expm1.def
|
@include common/s_expm1.def
|
||||||
@ -249,6 +253,8 @@ registered trademark of The IEEE.
|
|||||||
@page
|
@page
|
||||||
@include math/w_pow.def
|
@include math/w_pow.def
|
||||||
@page
|
@page
|
||||||
|
@include common/s_pow10.def
|
||||||
|
@page
|
||||||
@include math/w_remainder.def
|
@include math/w_remainder.def
|
||||||
@page
|
@page
|
||||||
@include common/s_remquo.def
|
@include common/s_remquo.def
|
||||||
|
Loading…
x
Reference in New Issue
Block a user