diff options
Diffstat (limited to 'lib/libc/alpha/sys/pipe.S')
-rw-r--r-- | lib/libc/alpha/sys/pipe.S | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/libc/alpha/sys/pipe.S b/lib/libc/alpha/sys/pipe.S index 76f44c2..188bfd4 100644 --- a/lib/libc/alpha/sys/pipe.S +++ b/lib/libc/alpha/sys/pipe.S @@ -25,13 +25,15 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. + * + * $FreeBSD$ */ #include "SYS.h" -PSYSCALL(pipe) +SYSCALL(pipe) stl v0, 0(a0) stl a4, 4(a0) mov zero, v0 RET -PEND(pipe) +END(pipe) |