From: Bruno Haible Date: Fri, 27 May 2005 12:30:08 +0000 (+0000) Subject: Remove redundant include. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b81a408b19b23d79300fd456eee93bc7eda4b549;p=pspp Remove redundant include. --- diff --git a/lib/ChangeLog b/lib/ChangeLog index 517f7a7534..095cd39527 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,7 @@ +2005-05-27 Bruno Haible + + * getlogin_r.h: Remove second include of . + 2005-05-25 Bruno Haible Derek Price diff --git a/lib/getlogin_r.h b/lib/getlogin_r.h index cfc9db3fb2..88935401b8 100644 --- a/lib/getlogin_r.h +++ b/lib/getlogin_r.h @@ -18,11 +18,12 @@ /* Written by Paul Eggert and Derek Price. */ +#include + #if HAVE_UNISTD_H # include #endif -#if !HAVE_DECL_GETLOGIN_R /* Copies the user's login name to NAME. The array pointed to by NAME has room for SIZE bytes. @@ -32,6 +33,6 @@ See . */ -# include +#if !HAVE_DECL_GETLOGIN_R int getlogin_r (char *name, size_t size); #endif