mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 10:17:35 +00:00
LibC: Add imaxdiv and lldiv
This commit is contained in:
parent
42a8186728
commit
857b0e1dc3
5 changed files with 74 additions and 0 deletions
|
@ -102,6 +102,11 @@ typedef struct {
|
|||
long rem;
|
||||
} ldiv_t;
|
||||
ldiv_t ldiv(long, long);
|
||||
typedef struct {
|
||||
long long quot;
|
||||
long long rem;
|
||||
} lldiv_t;
|
||||
lldiv_t lldiv(long long, long long);
|
||||
|
||||
int posix_openpt(int flags);
|
||||
int grantpt(int fd);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue