adds newlib-nano settings

This commit is contained in:
2024-01-16 12:26:47 +01:00
parent 123f579105
commit f9364c667b
8 changed files with 168 additions and 10 deletions

8
newlib-nano/stub.h Normal file
View File

@ -0,0 +1,8 @@
#ifndef _LIBWRAP_STUB_H_
#define _LIBWRAP_STUB_H_
static inline int _stub(int err) {
return err?-1:-1;
}
#endif /* _LIBWRAP_STUB_H_ */