src/hotspot/os/windows/os_windows.inline.hpp
changeset 55524 b279ae9843b8
parent 53886 e94ed0236046
child 57738 807d192fb7dd
--- a/src/hotspot/os/windows/os_windows.inline.hpp	Fri Jun 28 18:01:36 2019 +0200
+++ b/src/hotspot/os/windows/os_windows.inline.hpp	Fri Jun 28 09:49:10 2019 -0700
@@ -32,11 +32,6 @@
 
 inline const int os::default_file_open_flags() { return O_BINARY | O_NOINHERIT;}
 
-// File names are case-insensitive on windows only
-inline int os::file_name_strncmp(const char* s, const char* t, size_t num) {
-  return _strnicmp(s, t, num);
-}
-
 inline void  os::dll_unload(void *lib) {
   ::FreeLibrary((HMODULE)lib);
 }