[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
savewd: please port to native Windows
From: |
Bruno Haible |
Subject: |
savewd: please port to native Windows |
Date: |
Tue, 27 Aug 2024 22:34:52 +0200 |
clang on native Windows warns about an undefined function:
gllib\savewd.c(73,27): warning: implicit declaration of function 'fork' is
invalid in C99 [-Wimplicit-function-declaration]
There is no 'fork' function on native Windows.
It's not clear to me whether this module can still partially work on native
Windows, with some #if. Or if it is better disabled entirely, by putting
all the code under
#if !(defined _WIN32 && !defined __CYGWIN__)
Can someone please take a look?
Bruno