4-1.c revision fefb369f1720424bd278d884a8d1348052acd376
1/*
2 * Copyright (c) 2004, IBM Corporation. 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#define _XOPEN_SOURCE 600
10#include <stdio.h>
11#include <unistd.h>
12#include <aio.h>
13
14#include "posixtest.h"
15
16int main()
17{
18#if _POSIX_ASYNCHRONOUS_IO != 200112L
19	exit(PTS_UNSUPPORTED);
20#endif
21
22	return PTS_UNTESTED;
23}
24