* defs.h: Declare argument of re_comp as const char *.
authorJim Kingdon <jkingdon@engr.sgi.com>
Mon, 20 Sep 1993 21:49:24 +0000 (21:49 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Mon, 20 Sep 1993 21:49:24 +0000 (21:49 +0000)
gdb/ChangeLog
gdb/defs.h

index 55281ca75cc297a31d986b179bd2405f367413aa..cf38587d95569cb5f89aec4b811b7a4858890fbf 100644 (file)
@@ -1,5 +1,7 @@
 Mon Sep 20 14:53:11 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
 
+       * defs.h: Declare argument of re_comp as const char *.
+
        * remote.c, remote-mips.c: Use sr_get_debug not remote_debug.
 
        * README: Say using bfd from another release doesn't generally work.
index 4791f3abd05e6d48c2a295691e0957b866e914d4..35749d0c47a93e6de44e7cb0e0f3f3e7a73efb39 100644 (file)
@@ -265,10 +265,12 @@ perror_with_name PARAMS ((char *));
 extern void
 print_sys_errmsg PARAMS ((char *, int));
 
-/* From regex.c */
+/* From regex.c or libc.  BSD 4.4 declares this with the argument type as
+   "const char *" in unistd.h, so we can't declare the argument
+   as "char *".  */
 
 extern char *
-re_comp PARAMS ((char *));
+re_comp PARAMS ((const char *));
 
 /* From symfile.c */