summaryrefslogtreecommitdiff
path: root/static/unix-v10/man3/perror.3
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-26 16:38:00 -0400
committerJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-26 16:38:00 -0400
commit97d5c458cfa039d857301e1ca7d5af3beb37131d (patch)
treeb460cd850d0537eb71806ba30358840377b27688 /static/unix-v10/man3/perror.3
parentb89dc2331a50c63f8b33272a5c4c61ab98abdaa3 (diff)
build: Better Build System
Diffstat (limited to 'static/unix-v10/man3/perror.3')
-rw-r--r--static/unix-v10/man3/perror.346
1 files changed, 46 insertions, 0 deletions
diff --git a/static/unix-v10/man3/perror.3 b/static/unix-v10/man3/perror.3
new file mode 100644
index 00000000..f1b603d5
--- /dev/null
+++ b/static/unix-v10/man3/perror.3
@@ -0,0 +1,46 @@
+.th PERROR III 11/5/73
+.sh NAME
+perror \*- system error messages
+.sh SYNOPSIS
+.ft B
+perror(s)
+.br
+char *s;
+.s3
+int sys\*_nerr;
+.br
+char *sys\*_errlist[];
+.s3
+int errno;
+.ft R
+.br
+.sh DESCRIPTION
+.it Perror
+produces a short error message
+describing the last error encountered during a call
+to the system from a C program.
+First the argument string
+.it s
+is printed, then a colon, then the message and a new-line.
+Most usefully, the argument string is the name
+of the program which incurred the error.
+The error number is taken from the external variable
+.it errno,
+which is set when errors occur but not cleared when
+non-erroneous calls are made.
+.s3
+To simplify variant formatting
+of messages, the vector of message strings
+.it sys\*_errlist
+is provided;
+.it errno
+can be used as an index in this table to get the
+message string without the newline.
+.it Sys\*_nerr
+is the largest message number provided for in the table;
+it should be checked because new
+error codes may be added to the system before
+they are added to the table.
+.sh "SEE ALSO"
+Introduction to System Calls
+.sh BUGS