diff options
author | Roland McGrath <roland@hack.frob.com> | 2012-02-27 13:58:42 -0800 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2012-02-27 13:58:42 -0800 |
commit | 84ad622bbf4b1c22f68414532f5a8a88557bf9bd (patch) | |
tree | 6d0b6f3360c29f54f77916923679ef8dbf852ead /rt/tst-aio64.c | |
parent | 4579f81caf7fbfd17db43699e6352a8e4c26421f (diff) | |
download | glibc-84ad622bbf4b1c22f68414532f5a8a88557bf9bd.tar.gz glibc-84ad622bbf4b1c22f68414532f5a8a88557bf9bd.tar.xz glibc-84ad622bbf4b1c22f68414532f5a8a88557bf9bd.zip |
Add missing fcntl.h include in some aio tests.
Diffstat (limited to 'rt/tst-aio64.c')
-rw-r--r-- | rt/tst-aio64.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rt/tst-aio64.c b/rt/tst-aio64.c index 4eeda5b15b..7648da46fd 100644 --- a/rt/tst-aio64.c +++ b/rt/tst-aio64.c @@ -1,5 +1,5 @@ /* Tests for 64bit AIO in librt. - Copyright (C) 1998,99,2000,02 Free Software Foundation, Inc. + Copyright (C) 1998-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998. @@ -21,6 +21,7 @@ #include <aio.h> #include <errno.h> #include <error.h> +#include <fcntl.h> #include <stdlib.h> #include <string.h> #include <unistd.h> |