diff options
author | Wayne Davison <wayned@samba.org> | 2003-09-10 08:27:34 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2003-09-10 08:27:34 +0000 |
commit | f69204adad8d9fc3538d510fa88079e4c890eef8 (patch) | |
tree | 860388498fb71956fa9f6b81136519888a2e0667 /getgroups.c | |
parent | 459a83c9ccf8cd6a09dea756226246b15a292b28 (diff) | |
download | rsync-f69204adad8d9fc3538d510fa88079e4c890eef8.tar.gz rsync-f69204adad8d9fc3538d510fa88079e4c890eef8.tar.bz2 rsync-f69204adad8d9fc3538d510fa88079e4c890eef8.zip |
Changed main() definition to avoid an extra prototype being put
into the proto.h file.
Diffstat (limited to 'getgroups.c')
-rw-r--r-- | getgroups.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/getgroups.c b/getgroups.c index 78e2a88f..b3202c3b 100644 --- a/getgroups.c +++ b/getgroups.c @@ -31,7 +31,8 @@ # define NGROUPS 32 #endif -int main(UNUSED(int argc), UNUSED(char *argv[])) +int +main(UNUSED(int argc), UNUSED(char *argv[])) { int n, i; gid_t list[NGROUPS]; |