11 lines
250 B
C
11 lines
250 B
C
#ifndef _SYS_FILE_H
|
|
#define _SYS_FILE_H
|
|
|
|
#include <fcntl.h>
|
|
|
|
#define L_SET 0 /* absolute offset */
|
|
#define L_INCR 1 /* relative to current offset */
|
|
#define L_XTND 2 /* relative to end of file */
|
|
|
|
#endif
|