summaryrefslogtreecommitdiff
path: root/src/basic/errno-list.h
diff options
context:
space:
mode:
authorSven Eden <yamakuzure@gmx.net>2017-04-11 17:05:07 +0200
committerSven Eden <yamakuzure@gmx.net>2017-04-26 12:59:13 +0200
commit2705eaf36d46539397571886ba6ccd0045ef3e9b (patch)
treecd6e5e0a08aedf5373fd13f3f7c98616f7009856 /src/basic/errno-list.h
parent0d8d17b410396e92d931465768b22349aa6679e4 (diff)
Prep v228: Substitute declaration masks (1/4)
Although it looks very ugly, substitute all declaration masks of the form: // UNNEEDED type foo(...); with: /// UNNEEDED by elogind #if 0 type foo(...); #endif // 0 to make future merging of upstream pathes easier, as the relevant lines themselves are not changed any more.
Diffstat (limited to 'src/basic/errno-list.h')
-rw-r--r--src/basic/errno-list.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/basic/errno-list.h b/src/basic/errno-list.h
index 0b819fc5f..752e139fa 100644
--- a/src/basic/errno-list.h
+++ b/src/basic/errno-list.h
@@ -24,4 +24,7 @@
const char *errno_to_name(int id);
int errno_from_name(const char *name);
-// UNNEEDED int errno_max(void);
+/// UNNEEDED by elogind
+#if 0
+int errno_max(void);
+#endif // 0