..
Kconfig
libs/libc/unistd/lib_getcwd.c: remove stray sched_unlock(). Also fixes several typos.
2019-09-20 06:23:48 -06:00
legacy_dtoa.c
Various fixes to get a clean compile with the SDCC compiler. Compile is 'almost' clean.
2019-06-03 16:53:11 -06:00
legacy_libvsprintf.c
Fix wait loop and void cast ( #24 )
2020-01-02 10:54:43 -06:00
lib_asprintf.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_clearerr.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_dprintf.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_dtoa_data.c
Various fixes to get a clean compile with the SDCC compiler. Compile is 'almost' clean.
2019-06-03 16:53:11 -06:00
lib_dtoa_engine.c
Various fixes to get a clean compile with the SDCC compiler. Compile is 'almost' clean.
2019-06-03 16:53:11 -06:00
lib_dtoa_engine.h
Various fixes to get a clean compile with the SDCC compiler. Compile is 'almost' clean.
2019-06-03 16:53:11 -06:00
lib_fclose.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_feof.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_ferror.c
Fix use of undefined pp-token #errror, other typos.
2019-09-19 18:19:18 -06:00
lib_fflush.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_fgetc.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_fgetpos.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_fgets.c
libs/libc/stdio/lib_getdelim.c: Add implementations of the POSIX functions getdelim() and getline().
2019-11-12 18:58:50 -06:00
lib_fileno.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_fopen.c
Fix wait loop and void cast ( #24 )
2020-01-02 10:54:43 -06:00
lib_fprintf.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_fputc.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_fputs.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_fread.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_freopen.c
Fix wait loop and void cast ( #24 )
2020-01-02 10:54:43 -06:00
lib_fscanf.c
libs/libc/stdio: In the recent changes we lost the implementation of vsscanf(). This commit restores vsscanf(). sscanf() is not just a front end for vsscanf().
2019-02-15 17:31:58 -06:00
lib_fseek.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_fsetpos.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_ftell.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_fwrite.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_getdelim.c
include/cxx/ctime: Remove gititimer and setitimer. These are prototyped in sys/time.h, not time.h. Alternatively, ctime could include sys/time.h. Those APIs should also be in the std namespace.
2019-11-13 14:01:25 -06:00
lib_gets_s.c
libs/libc/stdio/lib_getdelim.c: Add implementations of the POSIX functions getdelim() and getline().
2019-11-12 18:58:50 -06:00
lib_gets.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_libdtoa.c
Various fixes to get a clean compile with the SDCC compiler. Compile is 'almost' clean.
2019-06-03 16:53:11 -06:00
lib_libfflush.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_libfgets.c
libs/libc/stdio/lib_libfgets.c: Because of how the function is defined, getline() canot be used on platforms that require CR-LF line terminations.
2019-11-12 19:43:42 -06:00
lib_libflushall.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_libfread.c
libs/libc/stdio/lib_libfread.c: fread() should always set EOF if fewer than the requested number of bytes was not read. Per Anthony Merlino.
2018-12-07 12:18:40 -06:00
lib_libfwrite.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_libnoflush.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_libsnoflush.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_libsprintf.c
Restore lib_sprintf(). It was removed because I thought was not used. But I was wrong; there is logic in drivers/syslog that depends on lib_sprintf().
2019-02-16 12:29:00 -06:00
lib_libvscanf.c
Various fixes to get a clean compile with the SDCC compiler. Compile is 'almost' clean.
2019-06-03 16:53:11 -06:00
lib_libvsprintf.c
Fix wait loop and void cast ( #24 )
2020-01-02 10:54:43 -06:00
lib_lowoutstream.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_meminstream.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_memoutstream.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_memsistream.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_memsostream.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_nullinstream.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_nulloutstream.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_perror.c
Fix wait loop and void cast ( #24 )
2020-01-02 10:54:43 -06:00
lib_printf.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_puts.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_rawinstream.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_rawoutstream.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_rawsistream.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_rawsostream.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_rdflush.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_remove.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_scanf.c
Squashed commit of the following:
2019-02-14 07:03:02 -06:00
lib_setbuf.c
Fix wait loop and void cast ( #24 )
2020-01-02 10:54:43 -06:00
lib_setvbuf.c
libs/libc/pthread, syscall/, and include/sys/syscall.h: Support for pthread_mutex_timedlock() was added recently, however no new system call was added for the API make is usable only in the FLAT build. With a pthread_mutex_timedlock() system call, there is no reason for a pthread_mutex_lock() system call since it is now nothing more than an wrapper around pthread_mutex_timedlock(), passing NULL for the time value. The pthread_mutex_lock() syscall was removed and the pthread_mutex_lock() implemented was moved from /sched/pthread to where it now belows in libs/libc/pthread.
2019-02-25 18:19:13 -06:00
lib_snprintf.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_sprintf.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_sscanf.c
Cosmetic update to some comments.
2019-02-15 18:26:06 -06:00
lib_stdinstream.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_stdoutstream.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_stdsistream.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_stdsostream.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_tempnam.c
Fix wait loop and void cast ( #24 )
2020-01-02 10:54:43 -06:00
lib_tmpnam.c
Fix wait loop and void cast ( #24 )
2020-01-02 10:54:43 -06:00
lib_ultoa_invert.c
libs/libc/stdio: Rename all nano_*.c and nano_*.h files to lib_*.c and lib_*.h to emphasize that these are now the defaults, not an optional implementation.
2019-02-17 12:29:50 -06:00
lib_ultoa_invert.h
libs/libc/stdio: Fix long long usage in all of the newer printf-related logic: The selection CONFIG_LIBC_LONG_LONG must be ignored if the architecture does not support long long types.
2019-06-03 08:45:57 -06:00
lib_ungetc.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_vasprintf.c
Fix wait loop and void cast ( #24 )
2020-01-02 10:54:43 -06:00
lib_vdprintf.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_vfprintf.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_vfscanf.c
Cosmetic update to some comments.
2019-02-15 18:26:06 -06:00
lib_vprintf.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_vsnprintf.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_vsprintf.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_vsscanf.c
Cosmetic update to some comments.
2019-02-15 18:26:06 -06:00
lib_wrflush.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
lib_zeroinstream.c
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
2018-05-29 13:21:26 -06:00
Make.defs
libs/libc/stdio/lib_getdelim.c: Add implementations of the POSIX functions getdelim() and getline().
2019-11-12 18:58:50 -06:00