diff options
Diffstat (limited to '')
| -rw-r--r-- | src/blind-make-kernel.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/blind-make-kernel.c b/src/blind-make-kernel.c index 67f8691..4253a68 100644 --- a/src/blind-make-kernel.c +++ b/src/blind-make-kernel.c @@ -1,9 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "stream.h" -#include "util.h" - -#include <ctype.h> -#include <string.h> +#include "common.h" USAGE("[-d denominator] ... [-nxyza] [-- value ...] ...") @@ -58,7 +54,7 @@ static double * read_matrix_stdin(size_t *rows, size_t *cols) { char *line = NULL, *p, *q; - size_t size = 0, col; + size_t size = 0, col = 0; double *kernel = NULL; ssize_t len; *rows = *cols = 0; |
