unistd.h 257 B

12345678910111213
  1. #ifndef _UNISTD_H_
  2. #define _UNISTD_H_
  3. # include <sys/unistd.h>
  4. #ifndef L_SET
  5. /* Old BSD names for the same constants; just for compatibility. */
  6. #define L_SET SEEK_SET
  7. #define L_INCR SEEK_CUR
  8. #define L_XTND SEEK_END
  9. #endif
  10. #endif /* _UNISTD_H_ */