Home | History | Annotate | Download | only in aio_h
      1 /*
      2  * Copyright (c) 2004, Bull SA. All rights reserved.
      3  * Created by:  Laurent.Vivier (at) 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 
     11 int (*dummy0) (int, struct aiocb *) = aio_cancel;
     12 int (*dummy1) (const struct aiocb *) = aio_error;
     13 int (*dummy2) (int, struct aiocb *) = aio_fsync;
     14 int (*dummy3) (struct aiocb *) = aio_read;
     15 ssize_t(*dummy4) (struct aiocb *) = aio_return;
     16 int (*dummy5) (const struct aiocb * const[], int,
     17 	       const struct timespec *) = aio_suspend;
     18 int (*dummy6) (struct aiocb *) = aio_write;
     19 int (*dummy7) (int, struct aiocb * const[],
     20 	       int, struct sigevent * restrict) = lio_listio;
     21 
     22 int main()
     23 {
     24 	return 0;
     25 }
     26