mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix wrong identifier on .end directive. The SYSCALL macro does name
mangling and creates an .ent directive with the mangled name.
This commit is contained in:
parent
ba4b44f1c4
commit
d4c89eb0a1
4 changed files with 4 additions and 4 deletions
|
|
@ -35,4 +35,4 @@ __FBSDID("$FreeBSD$");
|
|||
SYSCALL(vfork)
|
||||
cmovne a4, zero, v0 /* a4 (rv[1]) != 0, child */
|
||||
RET
|
||||
END(vfork)
|
||||
END(__sys_vfork)
|
||||
|
|
|
|||
|
|
@ -35,4 +35,4 @@ __FBSDID("$FreeBSD$");
|
|||
SYSCALL(fork)
|
||||
cmovne a4, zero, v0 /* a4 (rv[1]) != 0, child */
|
||||
RET
|
||||
END(fork)
|
||||
END(__sys_fork)
|
||||
|
|
|
|||
|
|
@ -37,4 +37,4 @@ SYSCALL(pipe)
|
|||
stl a4, 4(a0)
|
||||
mov zero, v0
|
||||
RET
|
||||
END(pipe)
|
||||
END(__sys_pipe)
|
||||
|
|
|
|||
|
|
@ -37,4 +37,4 @@ IMPORT(_logname_valid, 4) /* in _getlogin() */
|
|||
SYSCALL(setlogin)
|
||||
stl zero, _logname_valid /* clear it */
|
||||
RET
|
||||
END(setlogin)
|
||||
END(__sys_setlogin)
|
||||
|
|
|
|||
Loading…
Reference in a new issue