diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-01-16 16:48:53 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-01-16 16:48:53 +0000 |
commit | 94fa34c725ef755eb123686f6cbdceb24411e401 (patch) | |
tree | adb4e0f8373b5c035f73e06a3c6d139aba24388c /lib/libc/gen/getgrent.c | |
parent | e188cfc0eef8e45aaec37715ff8af7ca7e0dafe3 (diff) |
Move to the <limits.h> universe.
review by millert, binary checking process with doug, concept with guenther
Diffstat (limited to 'lib/libc/gen/getgrent.c')
-rw-r--r-- | lib/libc/gen/getgrent.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/gen/getgrent.c b/lib/libc/gen/getgrent.c index 638d693404d..c9c7953606c 100644 --- a/lib/libc/gen/getgrent.c +++ b/lib/libc/gen/getgrent.c @@ -1,4 +1,4 @@ -/* $OpenBSD: getgrent.c,v 1.41 2014/09/15 06:15:48 guenther Exp $ */ +/* $OpenBSD: getgrent.c,v 1.42 2015/01/16 16:48:51 deraadt Exp $ */ /* * Copyright (c) 1989, 1993 * The Regents of the University of California. All rights reserved. @@ -30,10 +30,10 @@ */ #include <sys/types.h> -#include <sys/param.h> #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <limits.h> #include <grp.h> #include <errno.h> #ifdef YP |