blob: 47a5b0e95938c13193dc0c1a3bdfa30231675eae (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef _ABIBITS_SEEK_WHENCE_H
#define _ABIBITS_SEEK_WHENCE_H
#define SEEK_SET 0
#define SEEK_CUR 1
#define SEEK_END 2
#define SEEK_DATA 3
#define SEEK_HOLE 4
#endif // _ABIBITS_SEEK_WHENCE_H
|