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

https://github.com/ruby/etc/commit/365398ea47
This commit is contained in:
Nobuyoshi Nakada 2023-07-12 16:20:30 +09:00 коммит произвёл git
Родитель b90c48b1e2
Коммит efd8ea366b
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -14,6 +14,8 @@
#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
@ -54,7 +56,6 @@ static VALUE sGroup;
# include <stdlib.h> # include <stdlib.h>
# endif # endif
#endif #endif
char *getlogin();
#define RUBY_ETC_VERSION "1.4.2" #define RUBY_ETC_VERSION "1.4.2"
@ -68,7 +69,8 @@ void rb_deprecate_constant(VALUE mod, const char *name);
#ifndef HAVE_RB_IO_DESCRIPTOR #ifndef HAVE_RB_IO_DESCRIPTOR
static int static int
io_descriptor_fallback(VALUE io) { io_descriptor_fallback(VALUE io)
{
rb_io_t *fptr; rb_io_t *fptr;
GetOpenFile(io, fptr); GetOpenFile(io, fptr);
return fptr->fd; return fptr->fd;