.BR syscall ()
saves CPU registers before making the system call,
restores the registers upon return from the system call,
-and stores any error code returned by the system call in
-.BR errno (3)
-if an error occurs.
+and stores any error returned by the system call in
+.BR errno (3).
.PP
Symbolic constants for system call numbers can be found in the header file
.IR <sys/syscall.h> .
The return value is defined by the system call being invoked.
In general, a 0 return value indicates success.
A \-1 return value indicates an error,
-and an error code is stored in
+and an error number is stored in
.IR errno .
.SH NOTES
.BR syscall ()