--- hatari/src/includes/scandir.h 2019/04/01 07:13:09 1.1 +++ hatari/src/includes/scandir.h 2019/04/09 08:53:17 1.1.1.4 @@ -1,12 +1,13 @@ /* Hatari - scandir.h - This file is distributed under the GNU Public License, version 2 or at - your option any later version. Read the file gpl.txt for details. + This file is distributed under the GNU General Public License, version 2 + or at your option any later version. Read the file gpl.txt for details. */ #ifndef HATARI_SCANDIR_H #define HATARI_SCANDIR_H +#include "config.h" #include #ifdef QNX @@ -15,8 +16,11 @@ #define dirent direct #endif -#if defined(__BEOS__) || (defined(__sun) && defined(__SVR4)) || defined(WIN32) +#if !HAVE_ALPHASORT extern int alphasort(const void *d1, const void *d2); +#endif + +#if !HAVE_SCANDIR extern int scandir(const char *dirname, struct dirent ***namelist, int (*sdfilter)(struct dirent *), int (*dcomp)(const void *, const void *)); #endif