From: Corinna Vinschen Date: Sun, 26 Nov 2023 14:41:41 +0000 (+0100) Subject: Cygwin: fcntl.h: Use cdefs.h macros X-Git-Tag: newlib-4.4.0~59 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=23e9b5cf3c4ff4507eff8fb9fcf8d5cb15afc694;p=newlib-cygwin.git Cygwin: fcntl.h: Use cdefs.h macros Signed-off-by: Corinna Vinschen --- diff --git a/winsup/cygwin/include/fcntl.h b/winsup/cygwin/include/fcntl.h index de64d4f7c..1ef51e50c 100644 --- a/winsup/cygwin/include/fcntl.h +++ b/winsup/cygwin/include/fcntl.h @@ -9,7 +9,9 @@ details. */ #ifndef _FCNTL_H #define _FCNTL_H +#include #include + #define O_NDELAY _FNDELAY /* F_LCK_MANDATORY: Request mandatory locks for this file descriptor. @@ -42,14 +44,11 @@ details. */ #define __FALLOC_FL_TRUNCATE 0x0001 /* internal */ -#ifdef __cplusplus -extern "C" { -#endif +__BEGIN_DECLS extern int posix_fadvise (int, off_t, off_t, int); extern int posix_fallocate (int, off_t, off_t); -#ifdef __cplusplus -} -#endif + +__END_DECLS #endif /* _FCNTL_H */