diff options
author | Lennart Poettering <lennart@poettering.net> | 2018-11-19 20:26:37 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2018-11-19 21:14:34 +0100 |
commit | 5e332028f20566d8b9aa0d01c60aff8b9f43bcb7 (patch) | |
tree | 3d17977a29f551a36dc2d86b28e0bfd9e6b7a182 /src/tty-ask-password-agent | |
parent | 2a44bf5099d4b13d90d4a6c93b404894960487ee (diff) | |
download | systemd-5e332028f20566d8b9aa0d01c60aff8b9f43bcb7.tar.gz |
util-lib: move main() definition macros to its own header file
This way, we can extend the macro a bit with stuff pulled in from other
headers without this affecting everything which pulls in macro.h, which
is one of our most basic headers.
This is just refactoring, no change in behaviour, in prepartion for
later changes.
Diffstat (limited to 'src/tty-ask-password-agent')
-rw-r--r-- | src/tty-ask-password-agent/tty-ask-password-agent.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tty-ask-password-agent/tty-ask-password-agent.c b/src/tty-ask-password-agent/tty-ask-password-agent.c index 1c965217d9..609839c5a1 100644 --- a/src/tty-ask-password-agent/tty-ask-password-agent.c +++ b/src/tty-ask-password-agent/tty-ask-password-agent.c @@ -30,6 +30,7 @@ #include "hashmap.h" #include "io-util.h" #include "macro.h" +#include "main-func.h" #include "mkdir.h" #include "path-util.h" #include "process-util.h" |