build: include <config.h> for kill(2), isblank(3), and isascii(3)

config.h defines _GNU_SOURCE, which in turn defines the bits necessary
for kill, isblank, and isascii.  So wherever we use those, we need
to make sure config.h is included.
This commit is contained in:
Dan Williams
2010-10-08 22:45:35 -05:00
parent 9ee77769af
commit be97e7f104
13 changed files with 14 additions and 1 deletions

View File

@@ -19,6 +19,7 @@
* Copyright (C) 1999-2010 Gentoo Foundation, Inc.
*/
#include <config.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>