diff options
author | Nobuyoshi Nakada <[email protected]> | 2022-09-05 00:16:47 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2022-09-05 00:16:47 +0900 |
commit | 51291ade70d7fc972cb8229fc788456a8c2d8a6b (patch) | |
tree | 27edd440e3641a62fff05c62cdd89d9818be8080 /file.c | |
parent | e83183b498bf946392aa3dfd6cb71a638b943d77 (diff) |
Remove extra semicolons at the top level [ci skip]
Diffstat (limited to 'file.c')
-rw-r--r-- | file.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 */ |