blob: 18c90238c0aee1bb1097bfdf41aad1e3615df6eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
$NetBSD: patch-at,v 1.1 2001/04/12 07:53:18 skrll Exp $
--- machdep/syscall-template-sparc-netbsd-1.3.S.orig Thu Apr 12 08:33:16 2001
+++ machdep/syscall-template-sparc-netbsd-1.3.S
@@ -4,6 +4,7 @@
*
*/
+#include <machine/asm.h>
#include <sys/syscall.h>
#ifdef SYS___sigsuspend14
@@ -14,9 +15,9 @@
#endif
#define SYSCALL(x) \
- .globl _machdep_sys_##x; \
+ .globl _C_LABEL(machdep_sys_##x); \
\
-_machdep_sys_##x:; \
+_C_LABEL(machdep_sys_##x):; \
\
mov SYS_##x, %g1; \
ta 0; \
|