11 lines
170 B
C
11 lines
170 B
C
|
/* bits/seek.h: SEEK_* constants for lseek() and fseek(). */
|
||
|
|
||
|
#ifndef _BITS_SEEK_H
|
||
|
#define _BITS_SEEK_H
|
||
|
|
||
|
#define SEEK_SET 0
|
||
|
#define SEEK_CUR 1
|
||
|
#define SEEK_END 2
|
||
|
|
||
|
#endif
|