aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPierre Wendling <pierre.wendling.4@gmail.com>2023-09-12 18:33:46 +0200
committerBrent Cook <busterb@gmail.com>2023-11-01 20:49:34 -0500
commitf06374e731108b0af09da2d4d06e7c5f907a3f77 (patch)
tree612b43450dfd2e9078adde85a1b596a1a4b84442 /include
parent60f4156d768ee3e60e92f59ea9d03e6957da3bc9 (diff)
downloadportable-f06374e731108b0af09da2d4d06e7c5f907a3f77.tar.gz
portable-f06374e731108b0af09da2d4d06e7c5f907a3f77.tar.bz2
portable-f06374e731108b0af09da2d4d06e7c5f907a3f77.zip
MSVC: Enable building ocspcheck.
- Add `STDIN_FILENO` to compat unistd header. - Use quotes to include compat getopt header in the compat unistd. - Export additional symbols needed by ocspcheck (optarg, optind, ftruncate)
Diffstat (limited to 'include')
-rw-r--r--include/compat/unistd.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/compat/unistd.h b/include/compat/unistd.h
index 2583a6e..63c07fc 100644
--- a/include/compat/unistd.h
+++ b/include/compat/unistd.h
@@ -23,6 +23,7 @@ ssize_t pwrite(int d, const void *buf, size_t nbytes, off_t offset);
23#include <io.h> 23#include <io.h>
24#include <process.h> 24#include <process.h>
25 25
26#define STDIN_FILENO 0
26#define STDOUT_FILENO 1 27#define STDOUT_FILENO 1
27#define STDERR_FILENO 2 28#define STDERR_FILENO 2
28 29
@@ -65,7 +66,7 @@ int getentropy(void *buf, size_t buflen);
65#endif 66#endif
66 67
67#ifndef HAVE_GETOPT 68#ifndef HAVE_GETOPT
68#include <getopt.h> 69#include "getopt.h"
69#endif 70#endif
70 71
71#ifndef HAVE_GETPAGESIZE 72#ifndef HAVE_GETPAGESIZE