merge revision(s) ed3d8f74ec:

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

	---
	 util.c | 7 -------
	 1 file changed, 7 deletions(-)
This commit is contained in:
Hiroshi SHIBATA 2024-05-21 13:29:08 +09:00
parent 122b510b94
commit 24d7a1c6e7
2 changed files with 1 additions and 8 deletions

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*);