mirror of
https://gitlab.os-k.eu/os-k-team/os-k.git
synced 2023-08-25 14:03:10 +02:00
28 lines
959 B
C
28 lines
959 B
C
//----------------------------------------------------------------------------//
|
|
// GNU GPL OS/K //
|
|
// //
|
|
// Authors: spectral` //
|
|
// NeoX //
|
|
// //
|
|
// Desc: strto(u)l functions //
|
|
//----------------------------------------------------------------------------//
|
|
|
|
#include <kalbase.h>
|
|
|
|
long strtol(const char *str, char **endp, int base) {
|
|
(void)str;
|
|
(void)endp;
|
|
(void)base;
|
|
__set_errno(ENOSYS);
|
|
return 0;
|
|
}
|
|
|
|
ulong strtoul(const char *str, char **endp, int base) {
|
|
(void)str;
|
|
(void)endp;
|
|
(void)base;
|
|
__set_errno(ENOSYS);
|
|
return 0;
|
|
}
|
|
|