Stanisław Wiśniewski 1649138a29 LibC: Return nullptr if allocation fails in strdup() and strndup() 2 years ago
..
arch 92da98822a LibC: Remove i686 support 2 years ago
arpa 57dc179b1f Everywhere: Rename to_{string => deprecated_string}() where applicable 2 years ago
bits d05d938e73 LibC: Properly implement the futimens function 2 years ago
net abc150085f LibC: Add missing sys/cdefs.h include 2 years ago
netinet abc150085f LibC: Add missing sys/cdefs.h include 2 years ago
sys 200e91cd7f Kernel+LibC: Modify aarch64's __mcontext to store registers in an array 2 years ago
CMakeLists.txt 92da98822a LibC: Remove i686 support 2 years ago
alloca.h 1682f0b760 Everything: Move to SPDX license identifiers in all files. 4 years ago
assert.cpp be1d7c325a Kernel: Move process coredump metadata modification to the prctl syscall 2 years ago
assert.h d26aabff04 Everywhere: Run clang-format 2 years ago
byteswap.h c214d31c5e Everywhere: Fix order of includes and #pragma once 2 years ago
complex.cpp 3f0be4e9ea LibC: Add barebones <complex.h> 3 years ago
complex.h abc150085f LibC: Add missing sys/cdefs.h include 2 years ago
crt0.cpp 97b7e494e4 Everywhere: Use ARCH(AARCH64) instead of AK_ARCH_AARCH64 2 years ago
crt0_shared.cpp 6b7ce19161 Everywhere: Remove unused includes of LibC/stdlib.h 2 years ago
ctype.cpp a80493d221 LibC: Align _ctype_ to newlib's implementation 3 years ago
ctype.h a80493d221 LibC: Align _ctype_ to newlib's implementation 3 years ago
cxxabi.cpp 3281050359 Everywhere: Remove "LibC/" includes, add lint-rule against it 2 years ago
dirent.cpp 6fd478b6ce Everywhere: Remove unused includes of AK/Format.h 2 years ago
dirent.h abc150085f LibC: Add missing sys/cdefs.h include 2 years ago
dlfcn.cpp 6e19ab2bbc AK+Everywhere: Rename String to DeprecatedString 2 years ago
dlfcn.h 226608a48f LibDl: Move the `dlfcn` implementation to LibC 2 years ago
elf.h 9a7b3c145f Everywhere: Change all XXX into FIXME or remove as appropriate 2 years ago
endian.h 1682f0b760 Everything: Move to SPDX license identifiers in all files. 4 years ago
errno.h a353ceecf1 LibC: Implement errno via a __errno_location() function 3 years ago
errno_codes.h d79486109a LibC: Add missing macro definitions for errno codes 3 years ago
fcntl.cpp d05d938e73 LibC: Properly implement the futimens function 2 years ago
fcntl.h abc150085f LibC: Add missing sys/cdefs.h include 2 years ago
fd_set.h 800e244ed9 Kernel+LibC: Move the FD_SETSIZE declaration to API/POSIX/select.h file 2 years ago
fenv.cpp 97b7e494e4 Everywhere: Use ARCH(AARCH64) instead of AK_ARCH_AARCH64 2 years ago
fenv.h 086969277e Everywhere: Run clang-format 3 years ago
float.h b9c753f6f9 LibC+LibDl: Declare functions taking no arguments as taking void 3 years ago
fnmatch.cpp 7af7fc8c16 Everywhere: Fix more Copyright header inconsistencies 3 years ago
fnmatch.h abc150085f LibC: Add missing sys/cdefs.h include 2 years ago
getopt.cpp 515f31339c LibC: Correctly reset the getopt state on `optind = 1` 2 years ago
getopt.h 086969277e Everywhere: Run clang-format 3 years ago
getsubopt.cpp 6b7ce19161 Everywhere: Remove unused includes of LibC/stdlib.h 2 years ago
glob.cpp 6c650d1b8d LibC: Add stubs for glob and globfree 3 years ago
glob.h abc150085f LibC: Add missing sys/cdefs.h include 2 years ago
grp.cpp 560133a0c6 Everywhere: Remove unused DeprecatedString includes 2 years ago
grp.h 8a09895bc1 LibC: Implement getgrent_r 2 years ago
ifaddrs.cpp 3281050359 Everywhere: Remove "LibC/" includes, add lint-rule against it 2 years ago
ifaddrs.h 7b24fc6fb8 Kernel+LibC: Stub out getifaddrs() and freeifaddrs() 3 years ago
inttypes.cpp 086969277e Everywhere: Run clang-format 3 years ago
inttypes.h 7b9ea3efde Kernel+Userland: Remove uses of the __i386__ compiler macro 2 years ago
ioctl.cpp 3904541938 LibC: Don't truncate arguments for ioctl() on x86_64 4 years ago
langinfo.cpp 086969277e Everywhere: Run clang-format 3 years ago
langinfo.h 7af7fc8c16 Everywhere: Fix more Copyright header inconsistencies 3 years ago
libcinit.cpp a353ceecf1 LibC: Implement errno via a __errno_location() function 3 years ago
libgen.cpp 1682f0b760 Everything: Move to SPDX license identifiers in all files. 4 years ago
libgen.h 1682f0b760 Everything: Move to SPDX license identifiers in all files. 4 years ago
limits.h c87557e9c1 Kernel+Libraries: Don't include limits.h from LibELF/Validation.h 2 years ago
link.cpp 1682f0b760 Everything: Move to SPDX license identifiers in all files. 4 years ago
link.h 539fb08551 Userland: Remove unecessary uses of __serenity__ macro 2 years ago
locale.cpp 767b23c4aa LibC: Allow detection of supported locales through setlocale 2 years ago
locale.h 086969277e Everywhere: Run clang-format 3 years ago
malloc.cpp ad30b8c447 Kernel+Libraries: Move defines and types from sys/auxv.h to Kernel/API 2 years ago
mallocdefs.h feb19646df LibC: Increase alignment for malloc() BigAllocationBlocks to 16 bytes 3 years ago
math.cpp 97b7e494e4 Everywhere: Use ARCH(AARCH64) instead of AK_ARCH_AARCH64 2 years ago
math.h 81d46fa100 LibM: Move the math standard library to LibC 2 years ago
memory.h 1682f0b760 Everything: Move to SPDX license identifiers in all files. 4 years ago
mntent.cpp 965b772f70 LibC: Remove TODO() macros to not break mc port 3 years ago
mntent.h f3490f9327 LibC: Add mntent stub functions 3 years ago
net.cpp 1cfc630d13 LibC: Implement if_indextoname and if_nametoindex 2 years ago
netdb.cpp 7c6b5ed161 LibIPC+LibC: Add and use a helper to encode/decoder container sizes 2 years ago
netdb.h 6a7d3006d7 LibC: Add herror() and hstrerror() 3 years ago
nl_types.h 7af7fc8c16 Everywhere: Fix more Copyright header inconsistencies 3 years ago
paths.h 6bb738c1b3 Ports: Add dosfstools port 2 years ago
poll.cpp c85f307e62 LibC: Mark a bunch of functions as cancellation points 3 years ago
poll.h abc150085f LibC: Add missing sys/cdefs.h include 2 years ago
priority.cpp 380c42c405 LibC: Add getpriority() and setpriority() stubs 3 years ago
pthread.cpp c2a900b853 Everywhere: Remove unused includes of AK/StdLibExtras.h 2 years ago
pthread.h 1b13d52a87 LibC: Make 'attributes' parameter for pthread_create const 2 years ago
pthread_cond.cpp c85f307e62 LibC: Mark a bunch of functions as cancellation points 3 years ago
pthread_integration.cpp 9db10887a1 Kernel: Clean up sys$futex and add support for cross-process futexes 3 years ago
pthread_once.cpp 9db10887a1 Kernel: Clean up sys$futex and add support for cross-process futexes 3 years ago
pthread_tls.cpp 224ac1a307 LibC: Remove a bunch of weak `pthread_*` symbols 3 years ago
pty.cpp 6fd478b6ce Everywhere: Remove unused includes of AK/Format.h 2 years ago
pty.h 5391836468 LibC: Remove 'int* aslave' parameter from forkpty() 4 years ago
pwd.cpp 560133a0c6 Everywhere: Remove unused DeprecatedString includes 2 years ago
pwd.h 7442cfb507 LibC: Implement getpwent_r 2 years ago
qsort.cpp 086969277e Everywhere: Run clang-format 3 years ago
regex.cpp be941c13e3 LibC: Reduce reliance on the dlfcn internals for `regex` functions 2 years ago
regex.h 578d73943a LibC+LibRegex: Move central regex definitions into LibC/bits 2 years ago
resolv.cpp 7af7fc8c16 Everywhere: Fix more Copyright header inconsistencies 3 years ago
resolv.h abc150085f LibC: Add missing sys/cdefs.h include 2 years ago
scanf.cpp c2a900b853 Everywhere: Remove unused includes of AK/StdLibExtras.h 2 years ago
sched.cpp 6dded99777 Kernel+LibC: Report correct scheduling priority limits 2 years ago
sched.h 7bb34279cd LibC: Remove duplicate definition of sched_param from sched.h 2 years ago
search.cpp 086969277e Everywhere: Run clang-format 3 years ago
search.h 086969277e Everywhere: Run clang-format 3 years ago
semaphore.cpp 6e7459322d AK: Remove StringBuilder::build() in favor of to_deprecated_string() 2 years ago
semaphore.h 01f0ae20b6 LibPthread: Implement named semaphores 3 years ago
serenity.cpp 6445a706cf Kernel+LibC: Implement `readlinkat(2)` 2 years ago
serenity.h abc150085f LibC: Add missing sys/cdefs.h include 2 years ago
setjmp.h 7b9ea3efde Kernel+Userland: Remove uses of the __i386__ compiler macro 2 years ago
shadow.cpp 6b7ce19161 Everywhere: Remove unused includes of LibC/stdlib.h 2 years ago
shadow.h 086969277e Everywhere: Run clang-format 3 years ago
signal.cpp 6fd478b6ce Everywhere: Remove unused includes of AK/Format.h 2 years ago
signal.h 046c23f567 Kernel+LibC: Move LibC/signal_numbers.h to Kernel/API/POSIX 2 years ago
spawn.cpp 6b7ce19161 Everywhere: Remove unused includes of LibC/stdlib.h 2 years ago
spawn.h 086969277e Everywhere: Run clang-format 3 years ago
ssp.cpp e575339564 LibELF: Add stack guard hardening 2 years ago
ssp_nonshared.cpp 678db534ff LibC: Properly implement stack protectors 2 years ago
stat.cpp d05d938e73 LibC: Properly implement the futimens function 2 years ago
stdarg.h 1682f0b760 Everything: Move to SPDX license identifiers in all files. 4 years ago
stddef.h d73a143004 LibC: Remove #ifdef KERNEL guard from stddef.h 2 years ago
stdint.h 1682f0b760 Everything: Move to SPDX license identifiers in all files. 4 years ago
stdio.cpp 3281050359 Everywhere: Remove "LibC/" includes, add lint-rule against it 2 years ago
stdio.h d5fbdf1866 Kernel+LibC+LibCore: Implement `renameat(2)` 2 years ago
stdio_ext.h abc150085f LibC: Add missing sys/cdefs.h include 2 years ago
stdlib.cpp b16ec1880c LibC+LibCore: Remove serenity_setenv() 2 years ago
stdlib.h b16ec1880c LibC+LibCore: Remove serenity_setenv() 2 years ago
string.cpp 1649138a29 LibC: Return nullptr if allocation fails in strdup() and strndup() 2 years ago
string.h 463ab21305 LibC: Add strcasestr() 2 years ago
strings.cpp 09a2db89c9 LibC: Add ffs{,l,ll} 2 years ago
strings.h 09a2db89c9 LibC: Add ffs{,l,ll} 2 years ago
stubs.cpp d26aabff04 Everywhere: Run clang-format 2 years ago
sysexits.h 794cf8eef4 LibC: Use EX_IOERR instead of EX_IOER 4 years ago
syslog.cpp 6e7459322d AK: Remove StringBuilder::build() in favor of to_deprecated_string() 2 years ago
syslog.h 086969277e Everywhere: Run clang-format 3 years ago
termcap.cpp 6e19ab2bbc AK+Everywhere: Rename String to DeprecatedString 2 years ago
termcap.h 086969277e Everywhere: Run clang-format 3 years ago
termios.cpp c85f307e62 LibC: Mark a bunch of functions as cancellation points 3 years ago
termios.h abc150085f LibC: Add missing sys/cdefs.h include 2 years ago
time.cpp 560133a0c6 Everywhere: Remove unused DeprecatedString includes 2 years ago
time.h 0420736143 LibC: Remove duplicate declaration of clock_t and time_t 2 years ago
times.cpp 1682f0b760 Everything: Move to SPDX license identifiers in all files. 4 years ago
ucontext.h 6ef355739d LibC: Add public and independent ucontext.h header 3 years ago
ulimit.cpp 8a9a9fac4d LibC: Add a wrapper for the getrusage syscall 3 years ago
ulimit.h 1682f0b760 Everything: Move to SPDX license identifiers in all files. 4 years ago
unistd.cpp c048cf2004 Libraries: Convert `DeprecatedFile` usages to `LibFileSystem` 2 years ago
unistd.h 515f31339c LibC: Correctly reset the getopt state on `optind = 1` 2 years ago
utime.cpp 086969277e Everywhere: Run clang-format 3 years ago
utime.h 086969277e Everywhere: Run clang-format 3 years ago
utmp.h 1682f0b760 Everything: Move to SPDX license identifiers in all files. 4 years ago
utsname.cpp 1682f0b760 Everything: Move to SPDX license identifiers in all files. 4 years ago
wchar.cpp 6d4d6c3e2a LibC: Implement `wcswidth` 3 years ago
wchar.h 6d4d6c3e2a LibC: Implement `wcswidth` 3 years ago
wctype.cpp 6fd478b6ce Everywhere: Remove unused includes of AK/Format.h 2 years ago
wctype.h abc150085f LibC: Add missing sys/cdefs.h include 2 years ago
wstdio.cpp b0b8d14a2c LibC: Automatically append null terminator in vswprintf 3 years ago