]> git.eshelyaron.com Git - emacs.git/commitdiff
* process.c (serial_open, serial_configure): Move decls from here ...
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 14 Mar 2011 22:49:41 +0000 (15:49 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 14 Mar 2011 22:49:41 +0000 (15:49 -0700)
* systty.h: ... to here, so that they can be checked.

src/ChangeLog
src/process.c
src/systty.h

index e45fed841089ad4c046c283f088ba8c13e64fa84..edc79329a3bf6b3f30588f2d6d9cdc130d094448 100644 (file)
@@ -1,5 +1,8 @@
 2011-03-14  Paul Eggert  <eggert@cs.ucla.edu>
 
+       * process.c (serial_open, serial_configure): Move decls from here ...
+       * systty.h: ... to here, so that they can be checked.
+
        * fns.c (get_random, seed_random): Move extern decls from here ...
        * lisp.h: ... to here, so that they can be checked.
 
index 210287a85f1d5b3390df757521aa6eb6d5fa5478..c8f329c244bd037eddba4c38255a01e4fc956e51 100644 (file)
@@ -164,10 +164,6 @@ extern Lisp_Object QCfilter;
 
 extern const char *get_operating_system_release (void);
 
-/* From sysdep.c or w32.c  */
-extern int serial_open (char *port);
-extern void serial_configure (struct Lisp_Process *p, Lisp_Object contact);
-
 #ifndef HAVE_H_ERRNO
 extern int h_errno;
 #endif
index 2eacfdb2716072a45c5ceebf89d60a613e9dc7c5..1548952e7a896213dd5612c98e5858a10f1f68f6 100644 (file)
@@ -118,3 +118,6 @@ struct emacs_tty {
 extern int emacs_get_tty (int, struct emacs_tty *);
 extern int emacs_set_tty (int, struct emacs_tty *, int);
 
+/* From sysdep.c or w32.c  */
+extern int serial_open (char *);
+extern void serial_configure (struct Lisp_Process *, Lisp_Object);