1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 18:07:34 +00:00

LibC: Add imaxdiv and lldiv

This commit is contained in:
Mițca Dumitru 2021-03-07 18:09:44 +02:00 committed by Andreas Kling
parent 42a8186728
commit 857b0e1dc3
5 changed files with 74 additions and 0 deletions

View file

@ -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);