mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
6a5717a48f
- Make memmem() faster - Make readdir() thread safe - Remove 64kb limit from mkdeps.com - Add old crypt() function from Musl - Improve new fix-third-party.py tool - Improve libc/isystem/ headers and fix bugs
9 lines
238 B
C
9 lines
238 B
C
#ifndef COSMOPOLITAN_LIBC_SYSV_CONSTS_L_H_
|
|
#define COSMOPOLITAN_LIBC_SYSV_CONSTS_L_H_
|
|
#include "libc/calls/calls.h"
|
|
|
|
#define L_SET SEEK_SET
|
|
#define L_INCR SEEK_CUR
|
|
#define L_XTND SEEK_END
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_SYSV_CONSTS_L_H_ */
|