From: Jim Meyering Date: Fri, 12 Apr 2002 21:03:28 +0000 (+0000) Subject: (dirfd): Elide prototype if dirfd is a macro. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=71f4108486e07483a8541a5c51745a08a246fa9f;p=pspp (dirfd): Elide prototype if dirfd is a macro. --- diff --git a/lib/dirfd.h b/lib/dirfd.h index 01fa28ef5e..422f976636 100644 --- a/lib/dirfd.h +++ b/lib/dirfd.h @@ -22,6 +22,6 @@ #ifndef HAVE_DECL_DIRFD "this configure-time declaration test was not run" #endif -#if !HAVE_DECL_DIRFD +#if !HAVE_DECL_DIRFD && !defined dirfd int dirfd (DIR const *); #endif