blob: 2b58f9ba36c1f19f81a91793e5796fc0e48fc9af [file] [log] [blame]
/*
* Copyright (c) 2004, Bull SA. All rights reserved.
* Created by: Laurent.Vivier@bull.net
* This file is licensed under the GPL license. For the full content
* of this license, see the COPYING file at the top level of this
* source tree.
*/
/* test if aio.h exists and can be included */
#include <aio.h>
#include <stdlib.h> /* For NULL on non-linux platforms. */
int main(void)
{
struct aiocb aiocb;
struct sigevent sigevent;
aiocb.aio_fildes = -1;
aiocb.aio_offset = -1;
aiocb.aio_buf = NULL;
aiocb.aio_nbytes = 0;
aiocb.aio_sigevent = sigevent;
aiocb.aio_reqprio = -1;
}