diff options
| author | Kacper <kacper@mail.openlinux.dev> | 2025-12-15 02:01:33 +0100 |
|---|---|---|
| committer | Kacper <kacper@mail.openlinux.dev> | 2025-12-15 02:01:59 +0100 |
| commit | 3b3325f761b09ebbfef04c44eed546cc4fdeb329 (patch) | |
| tree | aa19ea259bcda2410c2b3dd4512f19fb85aeaf8f /bin/pwd/pwd.c | |
| parent | 15d2df7811ef3cb79cc3e501d0d5f9b993d42bea (diff) | |
Added aio and eventfd support, along with sleep and yes utilities
Diffstat (limited to 'bin/pwd/pwd.c')
| -rw-r--r-- | bin/pwd/pwd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/pwd/pwd.c b/bin/pwd/pwd.c index 564b22e7..fef433cf 100644 --- a/bin/pwd/pwd.c +++ b/bin/pwd/pwd.c @@ -1,10 +1,11 @@ +#include "stddef.h" #include <err.h> #include <limits.h> +#include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/stat.h> #include <sys/uio.h> -#include <stdio.h> #include <unistd.h> int main(int argc, char **argv) |
