diff options
| -rw-r--r-- | src/ChangeLog | 3 | ||||
| -rw-r--r-- | src/process.c | 4 | ||||
| -rw-r--r-- | src/systty.h | 3 |
3 files changed, 6 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index e45fed84108..edc79329a3b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2011-03-14 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2011-03-14 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | * process.c (serial_open, serial_configure): Move decls from here ... | ||
| 4 | * systty.h: ... to here, so that they can be checked. | ||
| 5 | |||
| 3 | * fns.c (get_random, seed_random): Move extern decls from here ... | 6 | * fns.c (get_random, seed_random): Move extern decls from here ... |
| 4 | * lisp.h: ... to here, so that they can be checked. | 7 | * lisp.h: ... to here, so that they can be checked. |
| 5 | 8 | ||
diff --git a/src/process.c b/src/process.c index 210287a85f1..c8f329c244b 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -164,10 +164,6 @@ extern Lisp_Object QCfilter; | |||
| 164 | 164 | ||
| 165 | extern const char *get_operating_system_release (void); | 165 | extern const char *get_operating_system_release (void); |
| 166 | 166 | ||
| 167 | /* From sysdep.c or w32.c */ | ||
| 168 | extern int serial_open (char *port); | ||
| 169 | extern void serial_configure (struct Lisp_Process *p, Lisp_Object contact); | ||
| 170 | |||
| 171 | #ifndef HAVE_H_ERRNO | 167 | #ifndef HAVE_H_ERRNO |
| 172 | extern int h_errno; | 168 | extern int h_errno; |
| 173 | #endif | 169 | #endif |
diff --git a/src/systty.h b/src/systty.h index 2eacfdb2716..1548952e7a8 100644 --- a/src/systty.h +++ b/src/systty.h | |||
| @@ -118,3 +118,6 @@ struct emacs_tty { | |||
| 118 | extern int emacs_get_tty (int, struct emacs_tty *); | 118 | extern int emacs_get_tty (int, struct emacs_tty *); |
| 119 | extern int emacs_set_tty (int, struct emacs_tty *, int); | 119 | extern int emacs_set_tty (int, struct emacs_tty *, int); |
| 120 | 120 | ||
| 121 | /* From sysdep.c or w32.c */ | ||
| 122 | extern int serial_open (char *); | ||
| 123 | extern void serial_configure (struct Lisp_Process *, Lisp_Object); | ||