Define NPOLLFILE only if __USE_MISC.

This commit is contained in:
Ulrich Drepper 2001-01-27 04:59:52 +00:00
parent 76d981d3a6
commit cb25fffef1
2 changed files with 8 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1997 Free Software Foundation, Inc.
/* Copyright (C) 1997, 2001 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
@ -42,5 +42,7 @@
#define POLLHUP 0x010 /* Hung up. */
#define POLLNVAL 0x020 /* Invalid polling request. */
#ifdef __USE_MISC
/* Canonical number of polling requests to read in at a time in poll. */
#define NPOLLFILE 30
# define NPOLLFILE 30
#endif

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1997 Free Software Foundation, Inc.
/* Copyright (C) 1997, 2001 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
@ -47,5 +47,7 @@
#define POLLHUP 0x010 /* Hung up. */
#define POLLNVAL 0x020 /* Invalid polling request. */
#ifdef __USE_MISC
/* Canonical number of polling requests to read in at a time in poll. */
#define NPOLLFILE 30
# define NPOLLFILE 30
#endif