diff options
author | Glenn Strauss <gstrauss@gluelogic.com> | 2018-04-22 00:31:47 -0400 |
---|---|---|
committer | Glenn Strauss <gstrauss@gluelogic.com> | 2018-08-05 03:44:15 -0400 |
commit | a46bc4f5de49c742e4bdc6ac7be6a4e567c8d92a (patch) | |
tree | a38459e1fb45782c57db9328bbe9318ea1027d52 /src/array.c | |
parent | fb5a33ffe9177d51efc4c15dc801663de7a0f2fb (diff) | |
download | lighttpd-git-a46bc4f5de49c742e4bdc6ac7be6a4e567c8d92a.tar.gz |
[core] remove proc_open.[ch], reduce stdio.h use
Diffstat (limited to 'src/array.c')
-rw-r--r-- | src/array.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/array.c b/src/array.c index ba67acf0..cd88ac05 100644 --- a/src/array.c +++ b/src/array.c @@ -4,7 +4,6 @@ #include "buffer.h" #include <string.h> -#include <stdio.h> #include <stdlib.h> #include <limits.h> @@ -317,6 +316,10 @@ int array_is_kvstring(array *a) { return 1; } + + +#include <stdio.h> + void array_print_indent(int depth) { int i; for (i = 0; i < depth; i ++) { |