* breakpoint.c, breakpoint.h (breakpoint_init_inferior): New function
[deliverable/binutils-gdb.git] / gdb / go32-xdep.c
index 138c6a76df4539b84cbd883234b67cf5048aa006..884a437686d6246c711604330d75920375b41262 100644 (file)
@@ -32,6 +32,10 @@ sigsetmask()
 {
 }
 
-strlwr()
+void
+strlwr(str)
+     char *str;
 {
+  for (; *str; str++)
+    *str = tolower(*str);
 }
This page took 0.023184 seconds and 4 git commands to generate.