diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2016-10-18 16:06:44 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2016-10-18 16:06:44 +0000 |
commit | b0ddc35e53b92de74a5ae8ea96c520cb71032843 (patch) | |
tree | e0d084adb47f183640334acdd7799dd9ac2d6b48 /test-fts.c | |
parent | c0e0402341d1743ceff4cfa3e25c0d42e8782dbf (diff) | |
download | mandoc-b0ddc35e53b92de74a5ae8ea96c520cb71032843.tar.gz |
Compat glue for the FreeBSD comparison function prototype for fts_open(3)
which differs from what most other systems use.
While here, improve diagnostic output of ./configure tests.
Diffstat (limited to 'test-fts.c')
-rw-r--r-- | test-fts.c | 19 |
1 files changed, 18 insertions, 1 deletions
@@ -2,6 +2,13 @@ #include <sys/stat.h> #include <fts.h> #include <stdio.h> +#include <string.h> + +#ifdef FTS_COMPARE_CONST +int fts_compare(const FTSENT *const *, const FTSENT *const *); +#else +int fts_compare(const FTSENT **, const FTSENT **); +#endif int main(void) @@ -14,7 +21,7 @@ main(void) argv[1] = (char *)NULL; ftsp = fts_open((char * const *)argv, - FTS_PHYSICAL | FTS_NOCHDIR, NULL); + FTS_PHYSICAL | FTS_NOCHDIR, fts_compare); if (ftsp == NULL) { perror("fts_open"); @@ -40,3 +47,13 @@ main(void) return 0; } + +int +#ifdef FTS_COMPARE_CONST +fts_compare(const FTSENT *const *a, const FTSENT *const *b) +#else +fts_compare(const FTSENT **a, const FTSENT **b) +#endif +{ + return strcmp((*a)->fts_name, (*b)->fts_name); +} |