summaryrefslogtreecommitdiff
path: root/libc/error
diff options
context:
space:
mode:
authorRobert de Bath <rdebath@poboxes.com>1998-02-01 11:26:21 +0100
committerLubomir Rintel <lkundrak@v3.sk>2013-10-23 23:40:14 +0200
commit48f0b3eb836162d41622cedc1eb5f5168168fb8e (patch)
treec53156383d4682a0a296f6611575dbc1d64d1881 /libc/error
parent48798bf2eb93ec3b99720ac2e16093441156653d (diff)
downloaddev86-48f0b3eb836162d41622cedc1eb5f5168168fb8e.tar.gz
Import Dev86src-0.13.5.tar.gzv0.13.5
Diffstat (limited to 'libc/error')
-rw-r--r--libc/error/sys_errlist.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/libc/error/sys_errlist.c b/libc/error/sys_errlist.c
index 79a40bf..48aa6a3 100644
--- a/libc/error/sys_errlist.c
+++ b/libc/error/sys_errlist.c
@@ -10,7 +10,7 @@
* Of course the best of all is to use strerror().
*/
-#ifdef __AS386_16__
+#if defined(__AS386_16__) || defined(__AS386_32__)
#define NR_ERRORS 128
extern char **__sys_errlist;
@@ -19,12 +19,21 @@ extern int __sys_nerr;
char *sys_errlist[NR_ERRORS];
int sys_nerr = NR_ERRORS;
+#ifdef __AS386_16__
#asm
loc 1 ! Make sure the pointer is in the correct segment
auto_func: ! Label for bcc -M to work.
.word _init_vars ! Pointer to the autorun function
.text ! So the function after is also in the correct seg.
#endasm
+#else
+#asm
+ loc 1 ! Make sure the pointer is in the correct segment
+auto_func: ! Label for bcc -M to work.
+ .long _init_vars ! Pointer to the autorun function
+ .text ! So the function after is also in the correct seg.
+#endasm
+#endif
static void init_vars()
{
@@ -71,4 +80,4 @@ static void init_vars()
__sys_nerr = sys_nerr = NR_ERRORS;
}
-#endif /* __AS386_16__ */
+#endif /* __AS386_??__ */