From c21aeb1bd8e7dc22335fecb71aff8ff615248456 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Mon, 6 Mar 2006 07:20:35 +0000 Subject: [PATCH] (O_NOLINKS): Define to 0 if not already defined. --- src/system.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/system.h b/src/system.h index a9244f04cd..c4534947a3 100644 --- a/src/system.h +++ b/src/system.h @@ -193,6 +193,10 @@ initialize_exit_failure (int status) # define O_NOFOLLOW 0 #endif +#if !defined O_NOLINKS +# define O_NOLINKS 0 +#endif + #if !defined O_RSYNC # define O_RSYNC 0 #endif -- 2.47.2