From 2705eaf36d46539397571886ba6ccd0045ef3e9b Mon Sep 17 00:00:00 2001 From: Sven Eden Date: Tue, 11 Apr 2017 17:05:07 +0200 Subject: 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. --- src/basic/errno-list.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/basic/errno-list.h') 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 -- cgit v1.2.3