mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Remove extra semicolons at the top level [ci skip]
This commit is contained in:
parent
e83183b498
commit
51291ade70
1 changed files with 3 additions and 3 deletions
6
file.c
6
file.c
|
@ -2839,14 +2839,14 @@ utime_failed(struct apply_arg *aa)
|
|||
# if defined(__has_attribute) && __has_attribute(availability)
|
||||
typedef int utimensat_func(int, const char *, const struct timespec [2], int);
|
||||
|
||||
RBIMPL_WARNING_PUSH();
|
||||
RBIMPL_WARNING_IGNORED(-Wunguarded-availability-new);
|
||||
RBIMPL_WARNING_PUSH()
|
||||
RBIMPL_WARNING_IGNORED(-Wunguarded-availability-new)
|
||||
static inline utimensat_func *
|
||||
rb_utimensat(void)
|
||||
{
|
||||
return &utimensat;
|
||||
}
|
||||
RBIMPL_WARNING_POP();
|
||||
RBIMPL_WARNING_POP()
|
||||
|
||||
# define utimensat rb_utimensat()
|
||||
# else /* __API_AVAILABLE macro does nothing on gcc */
|
||||
|
|
Loading…
Reference in a new issue