2011-12-21 14:42:14 +04:00
|
|
|
/*
|
|
|
|
* "$Id$"
|
|
|
|
*
|
2013-03-07 02:17:44 +04:00
|
|
|
* This is a placekeeper stub that pulls in scandir implementations for host
|
2011-12-21 14:42:14 +04:00
|
|
|
* systems that do not provide a compatible one natively
|
|
|
|
*
|
2013-03-07 02:17:44 +04:00
|
|
|
* Copyright 1998-2013 by Bill Spitzak and others.
|
2011-12-21 14:42:14 +04:00
|
|
|
*
|
|
|
|
* This library is free software. Distribution and use rights are outlined in
|
|
|
|
* the file "COPYING" which should have been included with this file. If this
|
|
|
|
* file is missing or damaged, see the license at:
|
|
|
|
*
|
|
|
|
* http://www.fltk.org/COPYING.php
|
|
|
|
*
|
|
|
|
* Please report all bugs and problems on the following page:
|
|
|
|
*
|
|
|
|
* http://www.fltk.org/str.php
|
|
|
|
*/
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
|
2000-04-04 21:57:05 +04:00
|
|
|
#if defined(WIN32) && !defined(__CYGWIN__)
|
2002-05-04 16:37:41 +04:00
|
|
|
# include "scandir_win32.c"
|
1998-10-06 22:21:25 +04:00
|
|
|
#else
|
2013-04-05 18:14:08 +04:00
|
|
|
# include <config.h>
|
2013-03-07 02:15:01 +04:00
|
|
|
# ifndef HAVE_SCANDIR
|
|
|
|
# include "scandir_posix.c"
|
|
|
|
# endif /* HAVE_SCANDIR */
|
1998-10-06 22:21:25 +04:00
|
|
|
#endif
|
2002-05-04 16:37:41 +04:00
|
|
|
|
|
|
|
/*
|
2005-02-25 00:55:12 +03:00
|
|
|
* End of "$Id$".
|
2002-05-04 16:37:41 +04:00
|
|
|
*/
|