Changeset 42037 in webkit for trunk/JavaScriptCore
- Timestamp:
- Mar 27, 2009, 9:23:01 AM (16 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r42016 r42037 1 2009-03-27 Laszlo Gombos <[email protected]> 2 3 Reviewed by Darin Adler. 4 5 Bug 24884: Include strings.h for strcasecmp() 6 https://bugs.webkit.org/show_bug.cgi?id=24884 7 8 * runtime/DateMath.cpp: Reversed previous change including strings.h 9 * wtf/StringExtras.h: Include strings.h here is available 10 1 11 2009-03-26 Adam Roben <[email protected]> 2 12 -
trunk/JavaScriptCore/runtime/DateMath.cpp
r41685 r42037 69 69 #endif 70 70 71 #if HAVE(STRINGS_H)72 #include <strings.h>73 #endif74 75 71 using namespace WTF; 76 72 -
trunk/JavaScriptCore/wtf/StringExtras.h
r37604 r42037 29 29 #include <stdarg.h> 30 30 #include <stdio.h> 31 32 #if HAVE(STRINGS_H) 33 #include <strings.h> 34 #endif 31 35 32 36 #if COMPILER(MSVC)
Note:
See TracChangeset
for help on using the changeset viewer.