Mercurial > emacs
diff src/process.c @ 21514:fa9ff387d260
Fix -Wimplicit warnings.
| author | Andreas Schwab <schwab@suse.de> |
|---|---|
| date | Tue, 14 Apr 1998 12:25:56 +0000 |
| parents | aac7354edaed |
| children | be8599b6636a |
line wrap: on
line diff
--- a/src/process.c Tue Apr 14 10:56:46 1998 +0000 +++ b/src/process.c Tue Apr 14 12:25:56 1998 +0000 @@ -106,6 +106,8 @@ #include "commands.h" #include "frame.h" #include "blockinput.h" +#include "keyboard.h" +#include "dispextern.h" #define max(a, b) ((a) > (b) ? (a) : (b)) @@ -279,6 +281,7 @@ Lisp_Object status_convert (); +void update_status (p) struct Lisp_Process *p; { @@ -391,7 +394,7 @@ allocate_pty () { struct stat stb; - register c, i; + register int c, i; int fd; /* Some systems name their pseudoterminals so that there are gaps in @@ -512,6 +515,7 @@ return val; } +void remove_process (proc) register Lisp_Object proc; { @@ -2173,7 +2177,7 @@ static int waiting_for_user_input_p; /* This is here so breakpoints can be put on it. */ -static +static void wait_reading_process_input_1 () { } @@ -2210,6 +2214,7 @@ before the timeout elapsed. Otherwise, return true iff we received input from any process. */ +int wait_reading_process_input (time_limit, microsecs, read_kbd, do_display) int time_limit, microsecs; Lisp_Object read_kbd; @@ -2708,6 +2713,7 @@ The characters read are decoded according to PROC's coding-system for decoding. */ +int read_process_output (proc, channel) Lisp_Object proc; register int channel; @@ -3062,6 +3068,7 @@ being encoded. Should we store them in a buffer to prepend them to the data send later? */ +void send_process (proc, buf, len, object) volatile Lisp_Object proc; unsigned char *buf; @@ -4289,6 +4296,7 @@ return 0; } +void init_process () { register int i; @@ -4317,6 +4325,7 @@ bzero (proc_encode_coding_system, sizeof proc_encode_coding_system); } +void syms_of_process () { Qprocessp = intern ("processp");
