0ad/source/lib/posix/posix_aio.h

13 lines
357 B
C
Raw Normal View History

// despite the comment in wposix.h about not using Windows headers for
// POSIX declarations, this one is harmless (no incompatible declarations)
// and can safely be used on Windows as well.
#include <fcntl.h>
#if OS_WIN
# include "lib/sysdep/win/wposix/waio.h"
#else
# include <aio.h>
#endif
#include "posix_errno.h" // for user convenience