summaryrefslogtreecommitdiff
path: root/Libraries/LibC/errno_numbers.h
diff options
context:
space:
mode:
authorLuke <luke.wilde@live.co.uk>2020-09-09 08:16:18 +0100
committerAndreas Kling <kling@serenityos.org>2020-09-27 01:02:11 +0200
commit7334f21ef7aa5544c247eecae60aa26fbfd798a9 (patch)
tree35a439b0e23538f3e827eb798c026d579165c043 /Libraries/LibC/errno_numbers.h
parentec136db592394ee170b04eb99770a526fe8497a5 (diff)
downloadserenity-7334f21ef7aa5544c247eecae60aa26fbfd798a9.zip
LibC: Add EPFNOSUPPORT error number
Not used anywhere in Serenity currently, but required for OpenSSH.
Diffstat (limited to 'Libraries/LibC/errno_numbers.h')
-rw-r--r--Libraries/LibC/errno_numbers.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Libraries/LibC/errno_numbers.h b/Libraries/LibC/errno_numbers.h
index c805cf2985..356803b581 100644
--- a/Libraries/LibC/errno_numbers.h
+++ b/Libraries/LibC/errno_numbers.h
@@ -98,4 +98,5 @@
#define ENOTHREAD 70
#define EPROTO 71
#define ENOTSUP 72
-#define EMAXERRNO 73
+#define EPFNOSUPPORT 73
+#define EMAXERRNO 74