aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2003-01-23 21:37:53 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2003-01-23 21:37:53 +0000
commit1e518e37e8fbb4f43b7eb98d3623f3b00c08c94b (patch)
tree6ce330d8b9c35a162cba50c87d17da193046420a
parent40ce2f606a82e8ba657070bba9552b5d35d46fc2 (diff)
downloadsrc-1e518e37e8fbb4f43b7eb98d3623f3b00c08c94b.tar.gz
src-1e518e37e8fbb4f43b7eb98d3623f3b00c08c94b.zip
#include <stddef.h> rather than <sys/types.h> (perforce change 24116)
Notes
Notes: svn path=/vendor/openpam/dist/; revision=109756
-rw-r--r--contrib/openpam/include/security/pam_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/openpam/include/security/pam_types.h b/contrib/openpam/include/security/pam_types.h
index 1ec6400f6b07..bbea5c8401f0 100644
--- a/contrib/openpam/include/security/pam_types.h
+++ b/contrib/openpam/include/security/pam_types.h
@@ -31,13 +31,13 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $P4: //depot/projects/openpam/include/security/pam_types.h#8 $
+ * $P4: //depot/projects/openpam/include/security/pam_types.h#9 $
*/
#ifndef _PAM_TYPES_H_INCLUDED
#define _PAM_TYPES_H_INCLUDED
-#include <sys/types.h>
+#include <stddef.h>
#ifdef __cplusplus
extern "C" {