mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-01 12:03:41 +00:00
16 lines
441 B
C
16 lines
441 B
C
#ifndef COSMOPOLITAN_LIBC_SYSV_CONSTS_SEEK_H_
|
|
#define COSMOPOLITAN_LIBC_SYSV_CONSTS_SEEK_H_
|
|
#include "libc/runtime/symbolic.h"
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
extern const int SEEK_DATA;
|
|
extern const int SEEK_HOLE;
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
|
|
#define SEEK_DATA SYMBOLIC(SEEK_DATA)
|
|
#define SEEK_HOLE SYMBOLIC(SEEK_HOLE)
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_SYSV_CONSTS_SEEK_H_ */
|