Fixed corrupted tabs in previous commit.

This commit is contained in:
Bruce Evans 2000-01-14 15:47:00 +00:00
parent a5341e911c
commit c14cc40662
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=55976

View File

@ -47,7 +47,7 @@ LLABEL(name,1):
#define SYSCALL(name) \
LEAF(name,0); /* XXX # of args? */ \
WEAK_ALIAS(__CONCAT(_libc_,name), name); \
WEAK_ALIAS(__CONCAT(_libc_,name), name); \
CALLSYS_ERROR(name)
#define SYSCALL_NOERROR(name) \
@ -68,7 +68,7 @@ END(name)
#define PSEUDO(label,name) \
LEAF(label,0); /* XXX # of args? */ \
WEAK_ALIAS(__CONCAT(_libc_,name), name); \
WEAK_ALIAS(__CONCAT(_libc_,name), name); \
CALLSYS_ERROR(name); \
RET; \
END(label);