1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-24 06:20:43 -08:00

* process.c (serial_open, serial_configure): Move decls from here ...

* systty.h: ... to here, so that they can be checked.
This commit is contained in:
Paul Eggert 2011-03-14 15:49:41 -07:00
parent a884fdcc41
commit a0977c4454
3 changed files with 6 additions and 4 deletions

View 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.

View 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

View 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);