]> granicus.if.org Git - shadow/commitdiff
Add protection against multiple inclusions.
authornekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Mon, 26 May 2008 08:53:56 +0000 (08:53 +0000)
committernekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Mon, 26 May 2008 08:53:56 +0000 (08:53 +0000)
ChangeLog
lib/groupio.h

index c0fda5c92527e5b94f3bd21b2c15dbbc6a437108..8e5af7a2ecc251804219a1d488d99f2cf778e8cf 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-05-26  Nicolas François  <nicolas.francois@centraliens.net>
+
+       * lib/groupio.h: Add protection against multiple inclusions.
+
 2008-05-26  Nicolas François  <nicolas.francois@centraliens.net>
 
        * lib/pwio.h: Add protection against multiple inclusions.
index 9f11d70f3fe88b2046bbc709b301225e8566d280..ba708940b3224905e0637005ac01f23e2522c229 100644 (file)
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
+/* $Id$ */
+#ifndef _GROUPIO_H
+#define _GROUPIO_H
+
 #include <grp.h>
+
 extern int gr_close (void);
 extern const struct group *gr_locate (const char *);
 extern const struct group *gr_locate_gid (gid_t gid);
@@ -45,3 +50,4 @@ extern int gr_unlock (void);
 extern int gr_update (const struct group *);
 extern int gr_sort (void);
 
+#endif