• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/libatalk/compat/
1#ifdef HAVE_CONFIG_H
2#include "config.h"
3#endif /* HAVE_CONFIG_H */
4
5#if !defined HAVE_DIRFD && defined SOLARIS
6#include <dirent.h>
7int dirfd(DIR *dir)
8{
9    return dir->d_fd;
10}
11#endif
12