diff options
Diffstat (limited to 'io')
-rw-r--r-- | io/fcntl.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/io/fcntl.h b/io/fcntl.h index b75dc8934b..7c654c0503 100644 --- a/io/fcntl.h +++ b/io/fcntl.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 92, 94, 95, 96, 97 Free Software Foundation, Inc. +/* Copyright (C) 1991, 92, 94, 95, 96, 97, 98 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -48,6 +48,13 @@ __BEGIN_DECLS # endif #endif /* Use misc. */ +/* XPG wants the following symbols. */ +#ifdef __USE_XOPEN /* <stdio.h> has the same definitions. */ +# define SEEK_SET 0 /* Seek from beginning of file. */ +# define SEEK_CUR 1 /* Seek from current position. */ +# define SEEK_END 2 /* Seek from end of file. */ +#endif /* XPG */ + /* Do the file control operation described by CMD on FD. The remaining arguments are interpreted depending on CMD. */ extern int __fcntl __P ((int __fd, int __cmd, ...)); |