Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion libc/include/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -632,8 +632,9 @@ add_header_macro(
sys/time.h
DEPENDS
.llvm_libc_common_h
.llvm-libc-types.struct_timeval
.llvm-libc-macros.sys_time_macros
.llvm-libc-types.struct_itimerval
.llvm-libc-types.struct_timeval
)

add_header_macro(
Expand Down
14 changes: 14 additions & 0 deletions libc/include/stdio.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -197,12 +197,26 @@ functions:
- type: FILE *
- type: long
- type: int
- name: fseeko
standards:
- POSIX
return_type: int
arguments:
- type: FILE *
- type: off_t
- type: int
- name: ftell
standards:
- stdc
return_type: long
arguments:
- type: FILE *
- name: ftello
standards:
- POSIX
return_type: off_t
arguments:
- type: FILE *
- name: funlockfile
standards:
- POSIX
Expand Down
Loading