(close): Rename to do_close to avoid conflict with POSIX function of
authorBen Pfaff <blp@gnu.org>
Mon, 19 Mar 2007 01:21:41 +0000 (01:21 +0000)
committerBen Pfaff <blp@gnu.org>
Mon, 19 Mar 2007 01:21:41 +0000 (01:21 +0000)
the same name.

src/language/ChangeLog
src/language/syntax-string-source.c

index 33dbf2c6c7bb71816777e35203df4dc5b351b3a6..3801d68df07e2de0da2407424f1f220645d6eb01 100644 (file)
@@ -1,3 +1,8 @@
+2007-03-18  Ben Pfaff  <blp@gnu.org>
+
+       * syntax-string-source.c (close): Rename to do_close to avoid
+       conflict with POSIX function of the same name.
+
 Thu Feb  8 15:04:42 2007  Ben Pfaff  <blp@gnu.org>
 
        Reduce platform dependence.
index 4fe70ff2ad171f083f3fc5f6d5d4c4f8643c0dec..c3e8d4ffd1713718ea3a0a3e7a27d9258c9a5e94 100644 (file)
@@ -60,7 +60,7 @@ location (const struct getl_interface *i UNUSED)
 
 
 static void
-close (struct getl_interface *i )
+do_close (struct getl_interface *i )
 {
   struct syntax_string_source *sss = (struct syntax_string_source *) i;
 
@@ -116,7 +116,7 @@ create_syntax_string_source (const char *format, ...)
   va_end (args);
 
   sss->parent.interactive = always_false;
-  sss->parent.close = close;
+  sss->parent.close = do_close;
   sss->parent.read = read_single_line;
 
   sss->parent.name = name;