win32: use lib system() instead of our own function

mingw32 has system() function, so we don't need our own implementation
anymore.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult 2025-02-10 11:00:45 +01:00
parent 083395a3f9
commit 3e37b07ef3

View File

@ -184,7 +184,7 @@ RunXkbComp(xkbcomp_buffer_callback callback, void *userdata)
#ifndef WIN32 #ifndef WIN32
if (Pclose(out) == 0) if (Pclose(out) == 0)
#else #else
if (fclose(out) == 0 && System(buf) >= 0) if (fclose(out) == 0 && system(buf) >= 0)
#endif #endif
{ {
if (xkbDebugFlags) if (xkbDebugFlags)