diff options
author | Roland McGrath <roland@hack.frob.com> | 2012-07-30 16:09:11 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2012-07-30 16:34:33 -0700 |
commit | bea9b19322c77265033a068ac60c95a37e798a80 (patch) | |
tree | d3fad60d4780a5d86fe5dbedd994c3cd7625890b /posix/wordexp.c | |
parent | fc56c5bbc1a0d56b9b49171dd377c73c268ebcfd (diff) | |
download | glibc-bea9b19322c77265033a068ac60c95a37e798a80.zip glibc-bea9b19322c77265033a068ac60c95a37e798a80.tar.gz glibc-bea9b19322c77265033a068ac60c95a37e798a80.tar.bz2 |
Fix lots of bitrot for stub configurations.
Diffstat (limited to 'posix/wordexp.c')
-rw-r--r-- | posix/wordexp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/posix/wordexp.c b/posix/wordexp.c index 5ace137..d5a2820 100644 --- a/posix/wordexp.c +++ b/posix/wordexp.c @@ -1,5 +1,5 @@ /* POSIX.2 wordexp implementation. - Copyright (C) 1997-2003,2005,2006,2008,2011 Free Software Foundation, Inc. + Copyright (C) 1997-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Tim Waugh <tim@cyberelk.demon.co.uk>. @@ -27,6 +27,7 @@ #include <paths.h> #include <pwd.h> #include <signal.h> +#include <stdbool.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |