summaryrefslogtreecommitdiff
path: root/lib-src/fakemail.c
diff options
context:
space:
mode:
authorDan Nicolaescu <dann@ics.uci.edu>2010-07-03 23:05:43 -0700
committerDan Nicolaescu <dann@ics.uci.edu>2010-07-03 23:05:43 -0700
commitb8463cbfbe2c5183cf40772df2746e58b787ddeb (patch)
treed3e71f09d6fd870ffd7a478a17f86384f4872fe2 /lib-src/fakemail.c
parentb782e2d7f36a742156e5b13d43efdcf620356bc0 (diff)
downloademacs-b8463cbfbe2c5183cf40772df2746e58b787ddeb.tar.gz
* 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/fakemail.c')
-rw-r--r--lib-src/fakemail.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib-src/fakemail.c b/lib-src/fakemail.c
index ec5abb71aeb..f4d978b7d11 100644
--- a/lib-src/fakemail.c
+++ b/lib-src/fakemail.c
@@ -100,7 +100,7 @@ typedef struct header_record *header;
struct stream_record
{
FILE *handle;
- int (*action)();
+ int (*action)(FILE *);
struct stream_record *rest_streams;
};
typedef struct stream_record *stream_list;
@@ -417,7 +417,7 @@ close_the_streams (void)
}
void
-add_a_stream (FILE *the_stream, int (*closing_action) (/* ??? */))
+add_a_stream (FILE *the_stream, int (*closing_action) (FILE *))
{
stream_list old = the_streams;
the_streams = new_stream ();