From ed5f14878d6891f719252eecfaa7f06c0f898130 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Sun, 31 Mar 2013 17:06:06 +0200 Subject: [PATCH] Add AT_SYMLINK_FOLLOW. --- sortix/include/sortix/fcntl.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sortix/include/sortix/fcntl.h b/sortix/include/sortix/fcntl.h index 0c63caaa..50b4722d 100644 --- a/sortix/include/sortix/fcntl.h +++ b/sortix/include/sortix/fcntl.h @@ -59,6 +59,7 @@ __BEGIN_DECLS #define AT_EACCESS (1<<1) #define AT_SYMLINK_NOFOLLOW (1<<2) #define AT_REMOVEFILE (1<<3) +#define AT_SYMLINK_FOLLOW (1<<4) __END_DECLS