aboutsummaryrefslogtreecommitdiffstats
path: root/src/cerberus.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cerberus.h')
-rw-r--r--src/cerberus.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cerberus.h b/src/cerberus.h
index 9960fa7..0488174 100644
--- a/src/cerberus.h
+++ b/src/cerberus.h
@@ -56,9 +56,11 @@ void exec_hook(int hook, int argc, char** argv);
void do_login(int argc, char** argv);
#if AUTH > 0
+void preexit(void);
char* read_passphrase(void);
#else
-#define read_passphrase NULL
+#define preexit() /* do nothing */
+#define read_passphrase() NULL
#endif
void destroy_passphrase(void) __attribute__((optimize("-O0")));