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
1 changed files with 1 additions and 1 deletions

View File

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