diff options
author | W. Trevor King <[email protected]> | 2012-04-12 17:51:49 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2012-04-13 08:02:39 +0000 |
commit | 62bbe58280737d73badbe518f140e40480205176 (patch) | |
tree | 83015ad4f1bd84a089dedc9ca34b6acae3663739 | |
parent | gpgme-tool: add help messages for a number of commands. (diff) | |
download | gpgme-62bbe58280737d73badbe518f140e40480205176.tar.gz gpgme-62bbe58280737d73badbe518f140e40480205176.zip |
status-table.c: include string.h for strcmp.
* status-table.c: include string.h to avoid `warning: implicit
declaration of function 'strcmp'`.
-rw-r--r-- | src/status-table.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/status-table.c b/src/status-table.c index 276f70e9..8060bdb7 100644 --- a/src/status-table.c +++ b/src/status-table.c @@ -24,6 +24,7 @@ #endif #include <stdlib.h> +#include <string.h> #include "util.h" |