Browse Source

This is a bit less messy

Eric Andersen 22 years ago
parent
commit
85750cfa27
1 changed files with 11 additions and 26 deletions
  1. 11 26
      libc/misc/internals/errno.c

+ 11 - 26
libc/misc/internals/errno.c

@@ -1,29 +1,14 @@
-#if 0
 #include <features.h>
-/* Unforunately, this produces noisy warnings... */
-int errno __attribute__ ((section  (".bss")));
-int h_errno __attribute__ ((section  (".bss")));
-weak_alias(errno, _errno);
-weak_alias(h_errno, _h_errno);
-#else
-__asm__("
-.weak _errno;
-_errno = errno
-.weak _h_errno;
-_h_errno = h_errno
-
-.bss
-.globl  errno
-.type errno,%object
-.size errno,4
-errno:
-    .space  4
+#undef errno
 
-.bss
-.globl  h_errno
-.type h_errno,%object
-.size h_errno,4
-h_errno:
-    .space  4
-");
+#if 0
+/* Unfortunately, this doesn't work... */
+int h_errno __attribute__ ((section  (".bss"))) = 0;
+int errno __attribute__ ((section  (".bss"))) = 0;
+#else
+int errno = 0;
+int h_errno = 0;
 #endif
+
+weak_alias (errno, _errno)
+weak_alias(h_errno, _h_errno);