summaryrefslogtreecommitdiff
path: root/usr/src/uts/common/sys/aiocb.h
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/uts/common/sys/aiocb.h')
-rw-r--r--usr/src/uts/common/sys/aiocb.h12
1 files changed, 2 insertions, 10 deletions
diff --git a/usr/src/uts/common/sys/aiocb.h b/usr/src/uts/common/sys/aiocb.h
index 12d7b410d7..5b2fbaa95b 100644
--- a/usr/src/uts/common/sys/aiocb.h
+++ b/usr/src/uts/common/sys/aiocb.h
@@ -20,6 +20,8 @@
*/
/*
+ * Copyright 2014 Garrett D'Amore <garrett@damore.org>
+ *
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
@@ -27,8 +29,6 @@
#ifndef _SYS_AIOCB_H
#define _SYS_AIOCB_H
-#pragma ident "%Z%%M% %I% %E% SMI"
-
#include <sys/types.h>
#include <sys/fcntl.h>
#include <sys/siginfo.h>
@@ -40,11 +40,7 @@ extern "C" {
typedef struct aiocb {
int aio_fildes;
-#if defined(__STDC__)
volatile void *aio_buf; /* buffer location */
-#else
- void *aio_buf; /* buffer location */
-#endif
size_t aio_nbytes; /* length of transfer */
off_t aio_offset; /* file offset */
int aio_reqprio; /* request priority offset */
@@ -59,11 +55,7 @@ typedef struct aiocb {
#if !defined(_KERNEL)
typedef struct aiocb64 {
int aio_fildes;
-#if defined(__STDC__)
volatile void *aio_buf; /* buffer location */
-#else
- void *aio_buf; /* buffer location */
-#endif
size_t aio_nbytes; /* length of transfer */
off64_t aio_offset; /* file offset */
int aio_reqprio; /* request priority offset */