Fix Solatis futimes macro

This commit is contained in:
Todd C. Miller
2004-09-10 16:31:15 +00:00
parent c932482733
commit dc3bbe24c5

View File

@@ -215,7 +215,7 @@ typedef struct sigaction sigaction_t;
* Define futimes() in terms of futimesat() if needed.
*/
#if !defined(HAVE_FUTIMES) && defined(HAVE_FUTIMESAT)
# define futimes(_f, _p, _tv) futimesat(_f, NULL, _tv)
# define futimes(_f, _tv) futimesat(_f, NULL, _tv)
# define HAVE_FUTIMES
#endif