aboutsummaryrefslogtreecommitdiffstats
path: root/info/libpassphrase.texinfo
diff options
context:
space:
mode:
Diffstat (limited to 'info/libpassphrase.texinfo')
-rw-r--r--info/libpassphrase.texinfo4
1 files changed, 3 insertions, 1 deletions
diff --git a/info/libpassphrase.texinfo b/info/libpassphrase.texinfo
index 5136d20..7eaf9a5 100644
--- a/info/libpassphrase.texinfo
+++ b/info/libpassphrase.texinfo
@@ -149,11 +149,13 @@ been disabled.
@example
#include <passphrase.h> /* For libpassphrase */
#include <stdio.h> /* For output */
+#include <stdlib.h> /* For free */
int main(int argc, char** argv)
@{
/* Variables for the passphrase */
- char* passphrase, passphrase_;
+ char* passphrase;
+ char* passphrase_;
/* Hide the passphrase */
passphrase_disable_echo();