aboutsummaryrefslogtreecommitdiff
path: root/lib/mlibc/options/ansi/include/errno.h
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-03-07 17:28:52 -0500
committerIan Moffett <ian@osmora.org>2024-03-07 18:24:51 -0500
commitf5e48e94a2f4d4bbd6e5628c7f2afafc6dbcc459 (patch)
tree93b156621dc0303816b37f60ba88051b702d92f6 /lib/mlibc/options/ansi/include/errno.h
parentbd5969fc876a10b18613302db7087ef3c40f18e1 (diff)
build: Build mlibc + add distclean target
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'lib/mlibc/options/ansi/include/errno.h')
-rw-r--r--lib/mlibc/options/ansi/include/errno.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/lib/mlibc/options/ansi/include/errno.h b/lib/mlibc/options/ansi/include/errno.h
deleted file mode 100644
index 7730b16..0000000
--- a/lib/mlibc/options/ansi/include/errno.h
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef _ERRNO_H
-#define _ERRNO_H
-
-#include <abi-bits/errno.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#ifndef __MLIBC_ABI_ONLY
-
-// Some programs define their own errno as an "extern int" if it is not a macro.
-#define errno __mlibc_errno
-extern __thread int __mlibc_errno;
-
-int *__errno_location(void);
-
-// Linux extensions.
-
-extern char *program_invocation_name;
-extern char *program_invocation_short_name;
-extern char *__progname;
-extern char *__progname_full;
-
-#endif /* !__MLIBC_ABI_ONLY */
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif // _ERRNO_H