Luna/libc/include/bits/seek.h
apio 7e655e320a
All checks were successful
continuous-integration/drone/push Build is passing
kernel+libc: Add the lseek() syscall, and fseek, ftell, rewind, fsetpos, and fgetpos
2023-03-12 13:15:24 +01:00

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