1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 18:18:12 +00:00
serenity/Userland/Libraries/LibC/bits
Daniel Bertalan b9c753f6f9 LibC+LibDl: Declare functions taking no arguments as taking void
In C++, a function declaration with an empty parameter list means that
the function takes no arguments. In C, however, it means that the
function takes an unspecified number of parameters.

What we did previously was therefore non-conforming. This caused a
config check to fail in the curl port, as it was able to redeclare
`rand` as taking an int parameter.
2022-01-08 19:22:00 +01:00
..
FILE.h Everything: Move to SPDX license identifiers in all files. 2021-04-22 11:22:27 +02:00
posix1_lim.h Everything: Move to SPDX license identifiers in all files. 2021-04-22 11:22:27 +02:00
pthread_forward.h Everything: Move to SPDX license identifiers in all files. 2021-04-22 11:22:27 +02:00
pthread_integration.h LibC+LibDl: Declare functions taking no arguments as taking void 2022-01-08 19:22:00 +01:00
search.h LibC: Implement tfind and tsearch 2021-10-15 21:50:19 -07:00
sighow.h LibC: Move SIG_* definitions for sigprocmask into bits/sighow.h 2021-08-18 10:33:48 +02:00
stdint.h LibC: Fix up a few copy-pasted INTMAX parameter names 2022-01-08 00:46:30 +01:00
stdio_file_implementation.h LibC: Implement `flockfile and funlockfile` 2022-01-01 09:50:32 +00:00
wchar.h LibC: Implement ungetwc() 2021-12-21 21:24:36 +03:30