summaryrefslogtreecommitdiff
path: root/src/sysdeps/trydirfd.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2017-12-21 12:34:40 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2017-12-21 12:34:40 +0000
commit8a3e5a8b05ad0a7fab63595b6b4eafec56f63f89 (patch)
tree8aaf51a5fe4664a7934afa68c14c391e40b76f47 /src/sysdeps/trydirfd.c
parentb45692fe8638c4faaaedb488402b90971fda18f5 (diff)
downloadskalibs-8a3e5a8b05ad0a7fab63595b6b4eafec56f63f89.tar.xz
Add dirfd sysdep, because Solaris sucks
Diffstat (limited to 'src/sysdeps/trydirfd.c')
-rw-r--r--src/sysdeps/trydirfd.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/sysdeps/trydirfd.c b/src/sysdeps/trydirfd.c
new file mode 100644
index 0000000..c2eccf2
--- /dev/null
+++ b/src/sysdeps/trydirfd.c
@@ -0,0 +1,19 @@
+/* ISC license. */
+
+#undef _POSIX_C_SOURCE
+#undef _XOPEN_SOURCE
+
+#ifndef _NETBSD_SOURCE
+#define _NETBSD_SOURCE
+#endif
+#ifndef __EXTENSIONS__
+#define __EXTENSIONS__
+#endif
+
+#include <dirent.h>
+
+int main (void)
+{
+ DIR *dir = opendir(".") ;
+ return dirfd(dir) ;
+}