[ruby/etc] Declare getlogin even if unistd.h is not available

Although MinGW provides this header but not the function, Windows
version ruby provides the function.

https://github.com/ruby/etc/commit/f7fa1884fa
This commit is contained in:
Nobuyoshi Nakada 2023-07-13 00:34:45 +09:00 committed by git
parent f4bf80623f
commit 47cb789332

View File

@ -14,8 +14,6 @@
#include <sys/types.h> #include <sys/types.h>
#ifdef HAVE_UNISTD_H #ifdef HAVE_UNISTD_H
#include <unistd.h> #include <unistd.h>
#else
char *getlogin(void);
#endif #endif
#ifdef HAVE_GETPWENT #ifdef HAVE_GETPWENT
@ -56,6 +54,7 @@ static VALUE sGroup;
# include <stdlib.h> # include <stdlib.h>
# endif # endif
#endif #endif
char *getlogin(void);
#define RUBY_ETC_VERSION "1.4.2" #define RUBY_ETC_VERSION "1.4.2"