summaryrefslogtreecommitdiffstats
path: root/usr/include/klibc/seek.h
blob: e8ffe257ebe3e7b8c3fff4f045cd9f9320f11753 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * klibc/seek.h
 *
 * SEEK constants - needed by stdio.h, fcntl.h, and unistd.h
 */

#ifndef _KLIBC_SEEK_H
#define _KLIBC_SEEK_H

#define SEEK_SET 0
#define SEEK_CUR 1
#define SEEK_END 2

#endif /* _KLIBC_SEEK_H */