diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2013-09-18 23:16:34 +0200 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-11-21 05:49:03 +0100 |
commit | dcafd2d6cc7a98744b08875b35caf218a4a5c14a (patch) | |
tree | 5e69c28d907296088f6936c557ffa96c03664e1f /startup | |
parent | 31e8affe365ca9f1b91e31e3798f3d0725da15df (diff) |
startup: fix the declaration of the *_server functions
* startup/startup.c (demuxer): Fix the declaration of the server functions.
Diffstat (limited to 'startup')
-rw-r--r-- | startup/startup.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/startup/startup.c b/startup/startup.c index 0a338559..fe8471d9 100644 --- a/startup/startup.c +++ b/startup/startup.c @@ -501,7 +501,9 @@ static int demuxer (mach_msg_header_t *inp, mach_msg_header_t *outp) { - extern int notify_server (), startup_server (), msg_server (); + extern int notify_server (mach_msg_header_t *, mach_msg_header_t *); + extern int startup_server (mach_msg_header_t *, mach_msg_header_t *); + extern int msg_server (mach_msg_header_t *, mach_msg_header_t *); return (notify_server (inp, outp) || msg_server (inp, outp) || |