diff options
Diffstat (limited to 'libidu/walker.c')
-rw-r--r-- | libidu/walker.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/libidu/walker.c b/libidu/walker.c index 6584179..c1c5bb6 100644 --- a/libidu/walker.c +++ b/libidu/walker.c @@ -1,5 +1,5 @@ /* walker.c -- nifty file-tree walker - Copyright (C) 1986, 1995, 1996, 1999 Free Software Foundation, Inc. + Copyright (C) 1986, 1995, 1996, 1999, 2000 Free Software Foundation, Inc. Written by Greg McGary <gkm@gnu.ai.mit.edu> This program is free software; you can redistribute it and/or modify @@ -35,6 +35,13 @@ #include "pathmax.h" #include "xalloca.h" +#ifndef HAVE_DECL_STRSEP +"this configure-time declaration test was not run" +#endif +#if !HAVE_DECL_STRSEP +char *strsep (); +#endif + int walker_verbose_flag = 0; off_t largest_member_file = 0; |