diff options
Diffstat (limited to 'pc/config.h')
-rw-r--r-- | pc/config.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/pc/config.h b/pc/config.h index 6544abb8..1048ecba 100644 --- a/pc/config.h +++ b/pc/config.h @@ -90,7 +90,9 @@ #define HAVE_VPRINTF 1 /* Define as __inline if that's what the C compiler calls it. */ -/* #undef inline */ +#if defined (_MSC_VER) +#define inline +#endif /* Define if on MINIX. */ /* #undef _MINIX */ @@ -338,6 +340,11 @@ # define HAVE_POPEN_H +/* #if defined (_MSC_VER) */ +#define ssize_t long int +/* #endif */ + + #if (defined(_MSC_VER) && defined(MSDOS)) || defined(__MINGW32__) # define system(s) os_system(s) #endif |