Bananymous
|
1903079f96
|
LibC: Fix popen to return correct return value instead of -1
|
2024-12-05 06:47:10 +02:00 |
Bananymous
|
79e2c5d48c
|
LibC: Make FILE* reading buffered
There was no reason to perform a syscall for every byte read
|
2024-12-03 16:13:48 +02:00 |
Bananymous
|
04f49a6819
|
LibC: Implement {,v}dprintf
|
2024-11-27 21:33:10 +02:00 |
Bananymous
|
2464fccadd
|
LibC: Fix *scanf consuming extra characters
|
2024-10-19 12:43:23 +03:00 |
Bananymous
|
2c520391eb
|
Kernel/LibC: Add support for init_array and fini_array
|
2024-08-27 00:47:03 +03:00 |
Bananymous
|
25a47f0df3
|
LibC: Implement ungetc()
I didn't really test this, but I think this implementation does what it
needs to :)
|
2024-08-12 19:14:55 +03:00 |
Bananymous
|
6cda639869
|
LibC: Add stubs for tmpfile, mktemp and fchmod
|
2024-08-09 17:02:49 +03:00 |
Bananymous
|
46b1d4d194
|
LibC: Remove cxx abi stuff from libc
These will cause multiple definitions when linking with libstdc++
|
2024-08-09 16:58:11 +03:00 |
Bananymous
|
fe94d6cf89
|
LibC: Implement dummy rename() so vim can save files
vim calls rename when saving a file. This patch adds dummy
implementation that only works for regular files and does a copy instead
of proper rename.
|
2024-08-05 20:16:05 +03:00 |
Bananymous
|
4d96ae56ac
|
LibC: Add stubs for ungetc(), tcflush() and symlink()
|
2024-08-05 01:48:24 +03:00 |
Bananymous
|
401b460d75
|
LibC: Implement setbuf() and setvbuf()
|
2024-08-01 01:30:00 +03:00 |
Bananymous
|
e52dac3b25
|
LibC: Implement tmpnam()
This implementation is not really spec compliant as rand() does not
guarantee TMP_MAX different outputs + seeding
|
2024-07-30 12:02:30 +03:00 |
Bananymous
|
c69919738b
|
BuildSystem: Move all userpace libraries under the userspace directory
As the number of libraries is increasing, root directory starts to
expand. This adds better organization for libraries
|
2024-06-18 13:14:35 +03:00 |