Files
Upsilon/liba/include/unistd.h
Romain Goyet a840e7fb05 [liba] Define SEEK_CUR
For some reason it was defined in Python and raised re-def errors
2020-04-06 09:51:04 +02:00

8 lines
91 B
C

#ifndef LIBA_UNISTD_H
#define LIBA_UNISTD_H
#define SEEK_SET 0
#define SEEK_CUR 1
#endif