|
af452e2b2a
|
Kernel, libc: Add dup2()
|
2022-10-25 18:58:06 +02:00 |
|
|
0dec5f7bad
|
libc: Add dummy getcwd()
|
2022-10-24 17:05:28 +02:00 |
|
|
b615166373
|
libc: Stub out tmpfile() as well as add an empty math.h
|
2022-10-23 18:58:48 +02:00 |
|
|
58b01b74e2
|
Kernel, libc: Add stat()
|
2022-10-23 18:35:32 +02:00 |
|
|
865018e7f8
|
libc: Implement dirfd, rewinddir, telldir and seekdir
|
2022-10-23 14:59:06 +02:00 |
|
|
e457b88b04
|
Kernel, libc: Implement O_DIRECTORY and use that in dirent.h
|
2022-10-23 14:46:27 +02:00 |
|
|
8bf2904d74
|
libc: Implement a basic subset of dirent.h
|
2022-10-23 14:41:45 +02:00 |
|
|
78d72c2f0c
|
Kernel, libc: Add a getdents() system call
This is meant to be a low-level interface to implement dirent.h on top of.
|
2022-10-23 14:03:46 +02:00 |
|
|
35616993f8
|
libc: Add div(), ldiv(), and lldiv()
|
2022-10-23 12:26:48 +02:00 |
|
|
51bd7de17b
|
libc: Patch mman.h so libgcov builds
|
2022-10-23 12:10:05 +02:00 |
|
|
43180b777e
|
libc: Stub out qsort()
|
2022-10-23 11:19:08 +02:00 |
|
|
9dc8bfbdce
|
libc: Define a dummy FILENAME_MAX
|
2022-10-23 11:17:22 +02:00 |
|
|
bd8825231a
|
libc: Stub out sscanf()
|
2022-10-23 11:16:36 +02:00 |
|
|
51580bb846
|
libc: Add abs(), labs() and llabs()
Just needed to alias them to GCC builtins.
|
2022-10-23 11:10:26 +02:00 |
|
|
c02f2e128d
|
libc: Stub out ungetc()
|
2022-10-23 10:34:49 +02:00 |
|
|
f0eeaa25a3
|
libc: More inttypes.h
|
2022-10-23 10:31:56 +02:00 |
|
|
0c33fcdff2
|
libc: Stub out setvbuf, and add S_ISREG
|
2022-10-23 10:09:20 +02:00 |
|
|
fa35e883d7
|
libc: Stub out strftime
|
2022-10-23 10:01:03 +02:00 |
|
|
06f9ffc184
|
libc: Add EXIT_SUCCESS, EXIT_FAILURE, RAND_MAX and BUFSIZ
|
2022-10-22 21:39:51 +02:00 |
|
|
7600bc5582
|
libc: Add strings.h
|
2022-10-22 21:13:22 +02:00 |
|
|
433b307cb2
|
libc: Add strcoll()
No locale support, this just calls strcmp()
|
2022-10-22 21:00:59 +02:00 |
|
|
8908faf6e2
|
libc: Add strchrnul()
Another GNU extension, it's ok.
|
2022-10-22 18:37:02 +02:00 |
|
|
503a04f0e9
|
libc: Add strpbrk()
|
2022-10-22 17:54:33 +02:00 |
|
|
4d71c0ef04
|
libc: Implement strndup()
|
2022-10-22 17:49:44 +02:00 |
|
|
ac8a23d733
|
wrong type :)
|
2022-10-22 14:40:30 +02:00 |
|
|
189986d23f
|
libc: Rename pstname() to pstatname()
To avoid confusion with ptsname().
|
2022-10-22 14:30:41 +02:00 |
|
|
6ac57a2f5c
|
libc: Add support for pstat()
|
2022-10-22 14:26:42 +02:00 |
|
|
a4eed362b6
|
libc: Implement fseeko() and ftello()
|
2022-10-22 12:41:15 +02:00 |
|
|
759c8a8cab
|
libc: Make fpos_t no longer a struct
|
2022-10-22 12:39:37 +02:00 |
|
|
9bbb5d0c07
|
libc: Implement strspn (with a test)
|
2022-10-22 12:36:31 +02:00 |
|
|
6dc51abfc8
|
libc: Add remove() stub
|
2022-10-22 12:20:05 +02:00 |
|
|
81c337cf9a
|
libc: Add struct tm and localtime(), gmtime() stubs
|
2022-10-22 12:17:48 +02:00 |
|
|
91969d4d48
|
libc: strtoul's endptr must not be const
|
2022-10-22 12:12:52 +02:00 |
|
|
1f5f6a5e3b
|
libc: Add strcspn (with a test)
|
2022-10-22 11:57:25 +02:00 |
|
|
27a18a608c
|
libc: Implement fgets, fgetc, getc, getchar (with buffered read IO)
|
2022-10-22 11:38:16 +02:00 |
|
|
51e024588e
|
libc: Update inttypes.h
Turns out it was incorrect.
|
2022-10-22 11:23:12 +02:00 |
|
|
0faabe02e5
|
Kernel, libc: Implement O_CLOEXEC
|
2022-10-22 10:28:02 +02:00 |
|
|
b2f5a0502f
|
Kernel, libc: Implement O_NONBLOCK
|
2022-10-21 21:51:03 +02:00 |
|
|
43073cfdbb
|
Add new __lc_used macro
|
2022-10-21 18:39:46 +02:00 |
|
|
bef9158450
|
Kernel, libc: Add isatty() and F_ISTTY to fcntl()
|
2022-10-21 18:34:31 +02:00 |
|
|
93207820b3
|
libc: Add a few errors to errno.h
As well as ino_t, which I forgot in the fstat() commit :)
|
2022-10-21 18:34:01 +02:00 |
|
|
6d7a8a0d0b
|
libc: Add very basic strtoul()
As well as returning NULL in getenv() instead of aborting.
|
2022-10-21 18:32:46 +02:00 |
|
|
bf026d0dea
|
libc: Add bad time() function
It's just an alias for clock(). Which is not good. But it's a stub, that's the point.
|
2022-10-21 18:32:01 +02:00 |
|
|
c8a37eaf70
|
libc: Add SIGINT define
|
2022-10-21 18:31:19 +02:00 |
|
|
fcf191aa7a
|
Kernel, libc: Add fstat()
|
2022-10-21 18:31:09 +02:00 |
|
|
f7cf395f71
|
Kernel, libc: Add access()
|
2022-10-20 19:03:24 +02:00 |
|
|
aebd860947
|
libc: Add stdin
Aka keyboard :)
|
2022-10-19 20:43:04 +02:00 |
|
|
5816f54293
|
libc: Move SYS_* constants to sys/syscall.h
|
2022-10-19 17:49:55 +02:00 |
|
|
aa90e4a8d9
|
libc: Implement freopen()
|
2022-10-19 17:32:59 +02:00 |
|
|
671f2a2de3
|
Kernel, libc: Implement waitpid()
FIXME: exec() is now doing weird page table stuff. But at least it works, no panics :)
|
2022-10-18 21:30:52 +02:00 |
|