Remove internal functions from headers

Those functions were exposed by stdc to be used by posixc, but now they
are used internally in crt and not exposed by crt.
This commit is contained in:
deadwood 2024-04-15 12:12:31 +02:00
parent 99ab254f6f
commit 03cb6edc72
3 changed files with 2 additions and 7 deletions

View File

@ -50,5 +50,7 @@ struct StdCIntBase
};
struct StdCBase *__aros_getbase_StdCBase(void);
int __stdc_ioerr2errno(int ioerr);
char *__stdc_strerror(int n);
#endif

View File

@ -87,11 +87,6 @@ int *___geterrnoptr(void);
#define errno (*___geterrnoptr())
#endif
/* AROS specific functions to translate DOS error numbers to errno.
*/
int ioerr2errno(int ioerr);
int __stdc_ioerr2errno(int ioerr);
__END_DECLS
#endif /* _STDC_ERRNO_H_ */

View File

@ -48,8 +48,6 @@ void *memset (void * dest, int c, size_t n);
char *strerror (int n);
size_t strlen (const char * str);
/* AROS specific function */
char *__stdc_strerror(int n); /* This will be aliased to strerror() */
__END_DECLS