server/util: drop unused process.h (win32)

This commit is contained in:
Viktor Szakats 2025-02-26 17:23:05 +01:00
parent f65e9c7758
commit eddd708a99
No known key found for this signature in database
GPG Key ID: B5ABD165E2AEF201

View File

@ -47,13 +47,11 @@ extern const char *path;
extern const char *serverlogfile; extern const char *serverlogfile;
#ifdef _WIN32 #ifdef _WIN32
#include <process.h>
int win32_init(void); int win32_init(void);
const char *sstrerror(int err); const char *sstrerror(int err);
#else /* _WIN32 */ #else
#define sstrerror(e) strerror(e) #define sstrerror(e) strerror(e)
#endif /* _WIN32 */ #endif
/* fopens the test case file */ /* fopens the test case file */
FILE *test2fopen(long testno, const char *logdir); FILE *test2fopen(long testno, const char *logdir);