summaryrefslogtreecommitdiffstats
path: root/contrib/bind/include/netgroup.h
diff options
context:
space:
mode:
authordougb <dougb@FreeBSD.org>2003-06-17 08:25:13 +0000
committerdougb <dougb@FreeBSD.org>2003-06-17 08:25:13 +0000
commitf97237131f327c9eda67f546f7acffceef5a9fde (patch)
tree04f9050731919faa97a44a524d6a4129aea8e98d /contrib/bind/include/netgroup.h
parent02f065cde2cf18b6e76deab6f48d7aeb327bd639 (diff)
downloadFreeBSD-src-f97237131f327c9eda67f546f7acffceef5a9fde.zip
FreeBSD-src-f97237131f327c9eda67f546f7acffceef5a9fde.tar.gz
Import of ISC BIND version 8.3.6.
Version 8.3.5 was skipped due to bugs fixed in this version.
Diffstat (limited to 'contrib/bind/include/netgroup.h')
-rw-r--r--contrib/bind/include/netgroup.h18
1 files changed, 10 insertions, 8 deletions
diff --git a/contrib/bind/include/netgroup.h b/contrib/bind/include/netgroup.h
index 30efb94..fee6787 100644
--- a/contrib/bind/include/netgroup.h
+++ b/contrib/bind/include/netgroup.h
@@ -1,17 +1,19 @@
#ifndef netgroup_h
#define netgroup_h
-int getnetgrent(const char **machinep, const char **userp,
- const char **domainp);
+/*
+ * The standard is crazy. These values "belong" to getnetgrent() and
+ * shouldn't be altered by the caller.
+ */
+int getnetgrent __P((/* const */ char **, /* const */ char **,
+ /* const */ char **));
-int getnetgrent_r(char **machinep, char **userp, char **domainp,
- char *buffer, int buflen);
+int getnetgrent_r __P((char **, char **, char **, char *, int));
-void setnetgrent(const char *netgroup);
+void setnetgrent __P((const char *));
-void endnetgrent(void);
+void endnetgrent __P((void));
-int innetgr(const char *netgroup, const char *machine,
- const char *user, const char *domain);
+int innetgr __P((const char *, const char *, const char *, const char *));
#endif
OpenPOWER on IntegriCloud