diff options
author | Nobuyoshi Nakada <[email protected]> | 2023-08-27 23:21:20 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2023-08-27 23:21:20 +0900 |
commit | 78c5bb1136f7db559f14ba44eb04503b1493672d (patch) | |
tree | 8787f0ae389fc15a397468ecd85d31d2b6717576 /missing/explicit_bzero.c | |
parent | b7237e3bbd36e7c520c4cbaf1f866b6dcc265a99 (diff) |
Remove duplicate `#include <string.h>` [ci skip]
Diffstat (limited to 'missing/explicit_bzero.c')
-rw-r--r-- | missing/explicit_bzero.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/missing/explicit_bzero.c b/missing/explicit_bzero.c index 1220e5f9ad..59417e158e 100644 --- a/missing/explicit_bzero.c +++ b/missing/explicit_bzero.c @@ -1,12 +1,9 @@ #ifndef __STDC_WANT_LIB_EXT1__ -#define __STDC_WANT_LIB_EXT1__ 1 +#define __STDC_WANT_LIB_EXT1__ 1 /* for memset_s() */ #endif #include "ruby/missing.h" #include <string.h> -#ifdef HAVE_MEMSET_S -# include <string.h> -#endif #ifdef _WIN32 #include <windows.h> |