diff options
Diffstat (limited to 'io/fcntl.h')
-rw-r--r-- | io/fcntl.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/io/fcntl.h b/io/fcntl.h index 72a944b3d4..c89bf625bf 100644 --- a/io/fcntl.h +++ b/io/fcntl.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991,1992,1994-2001,2003,2004,2005,2006 +/* Copyright (C) 1991,1992,1994-2001,2003,2004,2005,2006,2007 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -210,6 +210,12 @@ extern int posix_fallocate64 (int __fd, __off64_t __offset, __off64_t __len); # endif #endif + +/* Define some macros helping to catch common problems. */ +#if __USE_FORTIFY_LEVEL > 0 && !defined __cplusplus +# include <bits/fcntl2.h> +#endif + __END_DECLS #endif /* fcntl.h */ |