Delete a macro that has never been used, probably added by mistake

This commit is contained in:
Nobuyoshi Nakada 2023-07-14 14:03:34 +09:00
parent c227ae7e64
commit ed3d8f74ec
Notes: git 2023-07-14 09:35:42 +00:00

7
util.c
View File

@ -208,13 +208,6 @@ ruby_strtoul(const char *str, char **endptr, int base)
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#if defined(HAVE_FCNTL_H)
#include <fcntl.h>
#endif
#ifndef S_ISDIR
# define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
#endif
typedef int (cmpfunc_t)(const void*, const void*, void*);