Luna/libc/include/bits/seek.h

11 lines
170 B
C
Raw Permalink Normal View History

/* 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