1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-22 08:08:50 -05:00

smb: fix build for djgpp/MSDOS

bug: https://curl.haxx.se/mail/lib-2017-07/0005.html
This commit is contained in:
Gisle Vanem 2017-07-04 15:42:33 +02:00 committed by Daniel Stenberg
parent c534384810
commit f8dba473a8

View File

@ -34,7 +34,7 @@
#include <process.h> #include <process.h>
#ifdef CURL_WINDOWS_APP #ifdef CURL_WINDOWS_APP
#define getpid GetCurrentProcessId #define getpid GetCurrentProcessId
#else #elif !defined(MSDOS)
#define getpid _getpid #define getpid _getpid
#endif #endif
#endif #endif