From 7755d921a8a04fdd7a335bcc45d78747ead15f2b Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Fri, 27 Jun 2014 08:14:07 -0600 Subject: Various changes associated with symbol tables. Most from Pelle Windestam --- nuttx/Documentation/NuttXNxFlat.html | 7 +- nuttx/configs/README.txt | 2 +- nuttx/include/cxx/cunistd | 2 +- nuttx/include/inttypes.h | 15 +-- nuttx/include/nuttx/math.h | 8 ++ nuttx/include/unistd.h | 4 +- nuttx/libc/README.txt | 2 +- nuttx/libc/fixedmath/Make.defs | 2 +- nuttx/libc/fixedmath/lib_rint.c | 135 --------------------------- nuttx/libc/lib.csv | 171 ----------------------------------- nuttx/libc/libc.csv | 170 ++++++++++++++++++++++++++++++++++ nuttx/libc/math.csv | 73 +++++++++++++++ nuttx/libc/math/Make.defs | 2 +- nuttx/libc/math/lib_rint.c | 137 ++++++++++++++++++++++++++++ nuttx/tools/README.txt | 2 +- nuttx/tools/mksymtab.c | 1 + 16 files changed, 410 insertions(+), 323 deletions(-) delete mode 100644 nuttx/libc/fixedmath/lib_rint.c delete mode 100644 nuttx/libc/lib.csv create mode 100644 nuttx/libc/libc.csv create mode 100644 nuttx/libc/math.csv create mode 100644 nuttx/libc/math/lib_rint.c (limited to 'nuttx') diff --git a/nuttx/Documentation/NuttXNxFlat.html b/nuttx/Documentation/NuttXNxFlat.html index 41b2a19ee..89b415041 100644 --- a/nuttx/Documentation/NuttXNxFlat.html +++ b/nuttx/Documentation/NuttXNxFlat.html @@ -407,7 +407,10 @@ any following arguments. nuttx/syscall/syscall.csv that describes the NuttX RTOS interface, and
  • - nuttx/libc/lib.csv that describes the NuttX C library interface. + nuttx/libc/libc.csv that describes the NuttX C library interface. +
  • +
  • + nuttx/libc/math.cvs that descirbes any math library.