diff options
author | Ian Moffett <ian@osmora.org> | 2024-03-07 17:28:52 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-03-07 18:24:51 -0500 |
commit | f5e48e94a2f4d4bbd6e5628c7f2afafc6dbcc459 (patch) | |
tree | 93b156621dc0303816b37f60ba88051b702d92f6 /lib/mlibc/options/linux/generic/utmpx.cpp | |
parent | bd5969fc876a10b18613302db7087ef3c40f18e1 (diff) |
build: Build mlibc + add distclean target
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'lib/mlibc/options/linux/generic/utmpx.cpp')
-rw-r--r-- | lib/mlibc/options/linux/generic/utmpx.cpp | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/lib/mlibc/options/linux/generic/utmpx.cpp b/lib/mlibc/options/linux/generic/utmpx.cpp deleted file mode 100644 index 4742567..0000000 --- a/lib/mlibc/options/linux/generic/utmpx.cpp +++ /dev/null @@ -1,45 +0,0 @@ -#include <bits/ensure.h> -#include <stddef.h> -#include <errno.h> -#include <utmpx.h> -#include <mlibc/debug.hpp> - -void updwtmpx(const char *, const struct utmpx *) { - // Empty as musl does - mlibc::infoLogger() << "\e[31mmlibc: updwtmpx() is a stub\e[39m" << frg::endlog; -} - -void endutxent(void) { - // Empty as musl does - mlibc::infoLogger() << "\e[31mmlibc: endutxent() is a stub\e[39m" << frg::endlog; -} - -void setutxent(void) { - // Empty as musl does - mlibc::infoLogger() << "\e[31mmlibc: setutxent() is a stub\e[39m" << frg::endlog; -} - -struct utmpx *getutxent(void) { - // return NULL as musl does - mlibc::infoLogger() << "\e[31mmlibc: getutxent() is a stub\e[39m" << frg::endlog; - return NULL; -} - -struct utmpx *pututxline(const struct utmpx *) { - // return NULL as musl does - mlibc::infoLogger() << "\e[31mmlibc: pututxline() is a stub\e[39m" << frg::endlog; - return NULL; -} - -int utmpxname(const char *) { - // return -1 as musl does - mlibc::infoLogger() << "\e[31mmlibc: utmpxname() is a stub\e[39m" << frg::endlog; - errno = ENOSYS; - return -1; -} - -struct utmpx *getutxid(const struct utmpx *) { - // return NULL as musl does - mlibc::infoLogger() << "\e[31mmlibc: getutxid() is a stub\e[39m" << frg::endlog; - return NULL; -} |