aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src/test-distrib.c
diff options
context:
space:
mode:
authorDan Nicolaescu2010-07-03 23:05:43 -0700
committerDan Nicolaescu2010-07-03 23:05:43 -0700
commitb8463cbfbe2c5183cf40772df2746e58b787ddeb (patch)
treed3e71f09d6fd870ffd7a478a17f86384f4872fe2 /lib-src/test-distrib.c
parentb782e2d7f36a742156e5b13d43efdcf620356bc0 (diff)
downloademacs-b8463cbfbe2c5183cf40772df2746e58b787ddeb.tar.gz
emacs-b8463cbfbe2c5183cf40772df2746e58b787ddeb.zip
* lib-src/fakemail.c (action): Convert function definitions to standard C.
(add_a_stream): * lib-src/test-distrib.c (cool_read): (main): Likewise.
Diffstat (limited to 'lib-src/test-distrib.c')
-rw-r--r--lib-src/test-distrib.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/lib-src/test-distrib.c b/lib-src/test-distrib.c
index a6c7c187f8a..880bd115882 100644
--- a/lib-src/test-distrib.c
+++ b/lib-src/test-distrib.c
@@ -52,10 +52,7 @@ char buf[300];
52 52
53/* Like `read' but keeps trying until it gets SIZE bytes or reaches eof. */ 53/* Like `read' but keeps trying until it gets SIZE bytes or reaches eof. */
54int 54int
55cool_read (fd, buf, size) 55cool_read (int fd, char *buf, int size)
56 int fd;
57 char *buf;
58 int size;
59{ 56{
60 int num, sofar = 0; 57 int num, sofar = 0;
61 58
@@ -70,9 +67,7 @@ cool_read (fd, buf, size)
70} 67}
71 68
72int 69int
73main (argc, argv) 70main (int argc, char **argv)
74 int argc;
75 char **argv;
76{ 71{
77 int fd; 72 int fd;
78 73