From 2bc551d14f4cbd439044146646d8333c18dc861e Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Mon, 14 Feb 1994 03:10:44 +0000 Subject: [PATCH] entered into RCS --- sysdeps/unix/bsd/hp/m68k/brk.S | 4 ++-- sysdeps/unix/bsd/hp/m68k/sysdep.h | 8 ++++---- sysdeps/unix/bsd/sun/m68k/brk.S | 4 ++-- sysdeps/unix/bsd/sun/m68k/sysdep.h | 8 ++++---- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/sysdeps/unix/bsd/hp/m68k/brk.S b/sysdeps/unix/bsd/hp/m68k/brk.S index 12db4d3742..1b06c12fe9 100644 --- a/sysdeps/unix/bsd/hp/m68k/brk.S +++ b/sysdeps/unix/bsd/hp/m68k/brk.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1993 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1993, 1994 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -33,7 +33,7 @@ ___curbrk: .text ENTRY (__brk) - movel POUND(__end), d0 + movel #__end, d0 cmpl sp@(4), d0 ble 0f movel d0, sp@(4) diff --git a/sysdeps/unix/bsd/hp/m68k/sysdep.h b/sysdeps/unix/bsd/hp/m68k/sysdep.h index eddb98f461..bd30bb8ba0 100644 --- a/sysdeps/unix/bsd/hp/m68k/sysdep.h +++ b/sysdeps/unix/bsd/hp/m68k/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1992, 1993, 1994 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -20,7 +20,7 @@ Cambridge, MA 02139, USA. */ #include -#define POUND(foo) (@@@Hash-Here@@@)foo +#define POUND # #ifdef __STDC__ #define ENTRY(name) \ @@ -39,11 +39,11 @@ Cambridge, MA 02139, USA. */ .globl syscall_error; \ error: jmp syscall_error; \ ENTRY (name) \ - DO_CALL (POUND (SYS_ify (syscall_name), args) + DO_CALL (POUND SYS_ify (syscall_name), args) #define DO_CALL(syscall, args) \ movel syscall, d0; \ - trap POUND(0); \ + trap POUND 0; \ bcs error #define ret rts diff --git a/sysdeps/unix/bsd/sun/m68k/brk.S b/sysdeps/unix/bsd/sun/m68k/brk.S index 21d2ea5468..6a69dd0da4 100644 --- a/sysdeps/unix/bsd/sun/m68k/brk.S +++ b/sysdeps/unix/bsd/sun/m68k/brk.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1992 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1992, 1994 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -38,7 +38,7 @@ ENTRY (__brk) ble 0f movel d0, sp@(4) 0: pea SYS_brk - trap POUND(0) + trap #0 bcs 1f movel sp@(4), ___curbrk clrl d0 diff --git a/sysdeps/unix/bsd/sun/m68k/sysdep.h b/sysdeps/unix/bsd/sun/m68k/sysdep.h index d89faab634..8655f37147 100644 --- a/sysdeps/unix/bsd/sun/m68k/sysdep.h +++ b/sysdeps/unix/bsd/sun/m68k/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1992 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1992, 1994 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -20,7 +20,7 @@ Cambridge, MA 02139, USA. */ #include -#define POUND(foo) (@@@Hash-Here@@@)foo +#define POUND # #ifdef __STDC__ #define ENTRY(name) \ @@ -41,7 +41,7 @@ Cambridge, MA 02139, USA. */ error: jmp syscall_error; \ ENTRY (name) \ pea SYS_##syscall_name; \ - trap POUND(0); \ + trap POUND 0; \ bcs error #else #define PSEUDO(name, syscall_name, args) \ @@ -50,7 +50,7 @@ Cambridge, MA 02139, USA. */ error: jmp syscall_error; \ ENTRY (name) \ pea SYS_/**/syscall_name; \ - trap POUND(0); \ + trap POUND 0; \ bcs error #endif