aboutsummaryrefslogtreecommitdiff
path: root/include/compat/stdio.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Provide getdelim and getline compat shimsTheo Buehler2024-12-201-0/+12
| | | | | | These are portable implementations from NetBSD that are needed on Windows and perhaps some other platforms with the new versions of the mlkem tests.
* Land #964Theo Buehler2023-12-121-1/+1
|\
| * windows: minor compat header fixesViktor Szakats2023-12-111-1/+1
| | | | | | | | | | | | - posix_win.c: use `snprintf` as-is with _MSC_VER >= 1900 - stdio.h: include socket header before windows.h - pthread.h: delete exec permission from source file
* | Prefix some compat symbols with libressl_Theo Buehler2023-12-111-0/+2
|/ | | | | See #928. This isn't a full fix, but should remove much of the friction already.
* MSVSC fixesBrent Cook2017-01-161-0/+4
|
* wrap gets on Windows, replacing '\r\n' with '\n'Brent Cook2015-12-051-0/+2
|
* updates for MSVC 2015's degenerate headersBrent Cook2015-09-091-0/+6
| | | | | | Note that 'perror' moves from stdio.h to stdlib.h, and 'rename' moves from stdio.h to io.h. Also, standard C includes move from the compiler to the Windows SDK, which changes the base path for the include files.
* add initial CMake and Visual Studio build supportBrent Cook2015-07-211-0/+39
This moves the compatibility include files from include to include/compat so we can use the awful MS C compiler <../include/> trick to emulate the GNU #include_next extension. This also removes a few old compat files we do not need anymore.