/* * POSIX says use to get O_* symbols and * SEEK_SET symbol form . */ #if defined(NTP_POSIX_SOURCE) /* * POSIX way */ #include #if defined(HAVE_SIGNALED_IO) && (defined(SYS_AUX2) || defined(SYS_AUX3) || defined(SYS_PTX)) #include #endif #include #include #else /* * BSD way */ #include #include #if !defined(SEEK_SET) && defined(L_SET) #define SEEK_SET L_SET #endif #endif