Create local C library implementation (2/2)
- This change is split into two separate patches in order to
  simplify the history as interpreted by 'git'. The split is
  between the move/rename and addition of new files.
- Remove dependency on toolchain C library headers and functions in
  order to ensure behavioural compatibility between toolchains.
- Use FreeBSD as reference for C library implementation.
- Do not let GCC use default library include paths.
- Remove unused definitions in modified headers and implementations.
- Move C library files to 'lib/stdlib' and 'include/stdlib'.
- Break std.c functions out into separate files.

Change-Id: I3e3d8d992052264d2a02489034ae4c03bf0f5512
1 parent c81b1d0 commit 0f702c6e7097c369517f891c172a84e2e439e9f7
@Harry Liebel Harry Liebel authored on 17 Dec 2013
Dan Handley committed on 20 Dec 2013
Showing 20 changed files
View
include/stdlib/assert.h 0 → 100644
View
include/stdlib/machine/_limits.h 0 → 100644
View
include/stdlib/machine/_stdint.h 0 → 100644
View
include/stdlib/machine/_types.h 0 → 100644
View
include/stdlib/stddef.h 0 → 100644
View
include/stdlib/stdio.h 0 → 100644
View
include/stdlib/string.h 0 → 100644
View
include/stdlib/sys/_null.h 0 → 100644
View
include/stdlib/sys/_stdint.h 0 → 100644
View
include/stdlib/sys/_types.h 0 → 100644
View
include/stdlib/sys/cdefs.h 0 → 100644
View
include/stdlib/sys/errno.h 0 → 100644
View
include/stdlib/sys/limits.h 0 → 100644
View
include/stdlib/sys/stdarg.h 0 → 100644
View
include/stdlib/sys/stdint.h 0 → 100644
View
lib/stdlib/abort.c 0 → 100644
View
lib/stdlib/assert.c 0 → 100644
View
lib/stdlib/printf.c 0 → 100644
View
lib/stdlib/puts.c 0 → 100644
View
lib/stdlib/std.c 0 → 100644