1/*
2 * Copyright (c) 2004, Bull SA. All rights reserved.
3 * Created by:  Laurent.Vivier@bull.net
4 * This file is licensed under the GPL license.  For the full content
5 * of this license, see the COPYING file at the top level of this
6 * source tree.
7 */
8
9#include <aio.h>
10
11int (*dummy0) (int, struct aiocb *) = aio_cancel;
12int (*dummy1) (const struct aiocb *) = aio_error;
13int (*dummy2) (int, struct aiocb *) = aio_fsync;
14int (*dummy3) (struct aiocb *) = aio_read;
15ssize_t(*dummy4) (struct aiocb *) = aio_return;
16int (*dummy5) (const struct aiocb * const[], int,
17	       const struct timespec *) = aio_suspend;
18int (*dummy6) (struct aiocb *) = aio_write;
19int (*dummy7) (int, struct aiocb * const[],
20	       int, struct sigevent * restrict) = lio_listio;
21
22int main()
23{
24	return 0;
25}
26