summaryrefslogtreecommitdiff
path: root/lib/getgroups.c
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2007-10-17 02:20:47 +0200
committerBruno Haible <bruno@clisp.org>2007-10-17 02:20:47 +0200
commit36b4b80587f78561ee7ba9f0198d0da6ce24f998 (patch)
tree66bcf08c5ecfdac932a6ad4335fe88243aa19152 /lib/getgroups.c
parent389843266916d92206c4a9e875aebf330391cbd1 (diff)
downloadgnulib-36b4b80587f78561ee7ba9f0198d0da6ce24f998.tar.gz
Use rpl_ prefix for functions, so as to avoid endless recursions in weird cases.
Diffstat (limited to 'lib/getgroups.c')
-rw-r--r--lib/getgroups.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/getgroups.c b/lib/getgroups.c
index 68a5aa1496..a8a225a8f7 100644
--- a/lib/getgroups.c
+++ b/lib/getgroups.c
@@ -1,6 +1,6 @@
/* provide consistent interface to getgroups for systems that don't allow N==0
- Copyright (C) 1996, 1999, 2003, 2006 Free Software Foundation, Inc.
+ Copyright (C) 1996, 1999, 2003, 2006, 2007 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -32,7 +32,7 @@
provided function handle all others. */
int
-getgroups (int n, GETGROUPS_T *group)
+rpl_getgroups (int n, GETGROUPS_T *group)
{
int n_groups;
GETGROUPS_T *gbuf;