diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 1997-09-02 12:55:01 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 1997-09-02 12:55:01 +0000 |
commit | 1517cea772058b0fcbe778d05b8b99c7e6f3b25f (patch) | |
tree | a2d817fe623f81b7729ed3cd2e128cad91eca02b /config/auto-aux/getgroups.c | |
parent | d75918f7e459b507ac6b4b95f14df0a1eedd4937 (diff) | |
download | ocaml-1517cea772058b0fcbe778d05b8b99c7e6f3b25f.tar.gz |
Sources C convertis en ANSI C
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1696 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'config/auto-aux/getgroups.c')
-rw-r--r-- | config/auto-aux/getgroups.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/auto-aux/getgroups.c b/config/auto-aux/getgroups.c index b69a10c009..5d2dde8fd4 100644 --- a/config/auto-aux/getgroups.c +++ b/config/auto-aux/getgroups.c @@ -16,7 +16,7 @@ #ifdef NGROUPS -int main() +int main(void) { int gidset[NGROUPS]; if (getgroups(NGROUPS, gidset) == -1) return 1; @@ -25,6 +25,6 @@ int main() #else -int main() { return 1; } +int main(void) { return 1; } #endif |