diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2014-01-14 17:15:13 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2014-01-14 17:15:13 +0000 |
commit | 38440e2d949e2550c60cf6d4910d626082a075bb (patch) | |
tree | 51873fb4049d27d07a7b0eaf9a48e2cd928a9942 /usr.bin/signify | |
parent | f56c6d9bbc3c03f1fa0076661503893c465cdc38 (diff) |
stdlib.h for malloc. from Fritjof
Diffstat (limited to 'usr.bin/signify')
-rw-r--r-- | usr.bin/signify/signify.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/signify/signify.c b/usr.bin/signify/signify.c index 314cb1e1f29..219b8820f74 100644 --- a/usr.bin/signify/signify.c +++ b/usr.bin/signify/signify.c @@ -1,4 +1,4 @@ -/* $OpenBSD: signify.c,v 1.33 2014/01/13 09:42:53 espie Exp $ */ +/* $OpenBSD: signify.c,v 1.34 2014/01/14 17:15:12 tedu Exp $ */ /* * Copyright (c) 2013 Ted Unangst <tedu@openbsd.org> * @@ -23,6 +23,7 @@ #include <fcntl.h> #include <string.h> #include <stdio.h> +#include <stdlib.h> #include <err.h> #include <unistd.h> #include <readpassphrase.h> |