
wking at drexel
Apr 12, 2012, 10:51 AM
Post #1 of 1
(122 views)
Permalink
|
|
[PATCH 2/2] status-table.c: include string.h for strcmp.
|
|
* status-table.c: include string.h to avoid `warning: implicit declaration of function 'strcmp'`. --- 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 276f70e..8060bdb 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" -- 1.7.3.4 _______________________________________________ Gnupg-devel mailing list Gnupg-devel [at] gnupg http://lists.gnupg.org/mailman/listinfo/gnupg-devel
|