From 3448597bff1103d603a611f5df29ce5a91466126 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Sat, 15 Aug 2020 21:32:52 -0400 Subject: pull in _POSIX2_LINE_MAX if needed --- src/pwd/getpwent.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/pwd') diff --git a/src/pwd/getpwent.c b/src/pwd/getpwent.c index c2718692..675f8aa3 100644 --- a/src/pwd/getpwent.c +++ b/src/pwd/getpwent.c @@ -9,6 +9,9 @@ #include "_pwd.h" #ifndef LINE_MAX +#ifndef _POSIX2_LINE_MAX +#include "limits/_POSIX2_LINE_MAX.c" +#endif #define LINE_MAX _POSIX2_LINE_MAX #endif -- cgit v1.2.1