embeddedartistry / libc

libc targeted for embedded systems usage. Reduced set of functionality (due to embedded nature). Chosen for portability and quick bringup.
MIT License
510 stars 67 forks source link

Add build option to disable unimplemented APIs #98

Closed phillipjohnston closed 5 years ago

phillipjohnston commented 5 years ago

We need unimplemented APIs defined to satisfy the libcpp build, even though we aren't using these functions.

A build option has been added to disable these unimplemented APIs for users who want to hide them from their programs. This does mean that you cannot use the library with libcpp, however.

Fixes #54