diff options
author | peter <peter@FreeBSD.org> | 1999-09-15 01:58:44 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-09-15 01:58:44 +0000 |
commit | 9751ab22aebd4e0dc1a47417f01e8e6471427840 (patch) | |
tree | f600607dae931af96b85ffc6096825041bedd739 /usr.sbin/moused | |
parent | 86df52f412c220bacae074173eb61b229ecdbbf3 (diff) | |
download | FreeBSD-src-9751ab22aebd4e0dc1a47417f01e8e6471427840.zip FreeBSD-src-9751ab22aebd4e0dc1a47417f01e8e6471427840.tar.gz |
Fix warning: return type of `main' is not `int'
Diffstat (limited to 'usr.sbin/moused')
-rw-r--r-- | usr.sbin/moused/moused.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/moused/moused.c b/usr.sbin/moused/moused.c index 5638fd9..1b01fde 100644 --- a/usr.sbin/moused/moused.c +++ b/usr.sbin/moused/moused.c @@ -423,7 +423,7 @@ static void mremote_clientchg(int add); static int kidspad(u_char rxc, mousestatus_t *act); -void +int main(int argc, char *argv[]) { int c; |